Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. -- 1. způsob
  2. select nazev
  3. from Výrobce
  4. where exists
  5. (
  6. select nazev,kategorie,cena
  7. from Hra
  8. where kategorie like 'fps' and Výrobce_ičo = ičo
  9. intersect
  10. select nazev,kategorie,cena
  11. from Hra
  12. where cena < 1000
  13. )
  14.  
  15. -- 2. způsob
  16. select nazev
  17. from Výrobce
  18. where ičo in
  19. (
  20. select Výrobce_ičo
  21. from Hra
  22. where nazev in
  23. (
  24. select nazev from Hra
  25. where kategorie like 'fps'
  26. except
  27. select nazev
  28. from Hra
  29. where cena > 1000
  30. )
  31. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement