Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. insert into kierunki (id_kierunku, nazwa_kierunku) values (13, 'Kryminologia stosowana');
  2. insert into wydzialy (id_wydzialu, nazwa_wydzialu) values (5, 'Nauk spolecznych');
  3. insert into studenci (id_studenta, imie, nazwisko, data_urodzenia, id_wydzialu, id_kierunku, rok_studiow) values
  4. (22, 'Maciej', 'Malinowski', '1996-05-30',5,13,3),
  5. (23, 'studencistudenciKamil', 'Slimak', '1996-03-01',5,13,3);
  6. update studenci set imie='Robert', nazwisko='Kulicki' where id_studenta=4;
  7. update stypendia set maksymalna_wysokosc='500' where id_stypendium=1;
  8. delete from przyznane_stypendia where id_studenta=10;
  9. delete from studenci where id_studenta=10;
  10. delete from przyznane_stypendia where id_studenta=5;
  11. delete from studenci where nazwisko='Nowak';
  12. select * from studenci where nazwisko='Nowak';
  13. select * from przyznane_stypendia where id_studenta=5;
  14. select imie, nazwisko, nazwa_kierunku, nazwa_wydzialu
  15. from studenci, kierunki, wydzialy;
  16. select nazwisko, nazwa_stypendium
  17. from studenci, stypendia
  18. order by nazwisko asc;
  19. select nazwisko, data_urodzenia, nazwa_wydzialu, maksymalna_wysokosc
  20. from studenci, wydzialy, stypendia
  21. where maksymalna_wysokosc >300;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement