Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. select cim "'a'-t tart a st neve" from film f where studioazon in (select azonosito from studiok where nev like '%a%');
  2. select cim "'x'-t tart a st neve" from film f where studioazon in (select azonosito from studiok where nev like '%x%');
  3. select szinesznev as "matrix noi szereploi" from szerepelbenne where szinesznev in
  4. (select nev from filmszinesz where nem='n') and filmcim='The Matrix';
  5. select szinesznev as "matrix noi szereploi" from szerepelbenne where szinesznev in
  6. (select nev from filmszinesz where nem='f') and filmcim='The Matrix';
  7. select cim "S.L.J.", hossz from film f where f.ev|cim in (select sz.ev|filmcim from szerepelbenne sz) where szinesznev="Samuel L. Jackson");
  8. select nev "SLJ rendezoi" from gyartasiranyito where azonosito in (select producerazon from film f where f.ev|cim in(select sz.ev|filmcim from szerepelbenne sz where szinesznev="Samuel L Jackson"));
  9. select cim from film kulso where ev>any (select ev from film where cim= kulso.cim);
  10. select cim from film kulso where ev>any (select ev from film where cim= kulso.cim);
  11. select distinct(f1.cim) from film f1,film f2 where f1.cim=f2.cim and not f1.ev=f2.ev;
  12. select cim, hossz from film where hossz>all (select hossz from film where cim in ('Taxi', 'The Matrix', 'Macska-jaj'));
  13. select cim, hossz from film where hossz>any (select hossz from film where cim in ('Taxi', 'The Matrix', 'Macska-jaj'));
  14. select cim, hossz from film where hossz>some (select hossz from film where cim in ('Taxi', 'The Matrix', 'Macska-jaj'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement