Skip to content

Instantly share code, notes, and snippets.

@alicilin
Created December 17, 2017 14:39
Show Gist options
  • Select an option

  • Save alicilin/e442233d85c3012fd950f667b5015efc to your computer and use it in GitHub Desktop.

Select an option

Save alicilin/e442233d85c3012fd950f667b5015efc to your computer and use it in GitHub Desktop.
mysql recursive select
select @pv:=category_id as category_id, name, parent from category
join
(select @pv:=19)tmp
where parent=@pv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment