Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. select * from figures
  2. inner join figures_categorie on figures.categorie=figures_categorie.id
  3. where categorie=1
  4. or categorie in
  5. (select id from figures_categorie as cat1 where cat1.parent=1
  6. or cat1.parent in
  7. (select id from figures_categorie as cat2 where cat2.parent=1)) ;
  8.  
  9. select * from figures
  10. inner join figures_categorie on figures.categorie=figures_categorie.id
  11. where categorie=1
  12. or categorie in
  13. (select id from figures_categorie as cat1 where cat1.parent=1
  14. or cat1.parent in (select id from cat1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement