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 0.90 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, 'Tomasz', 'Kolo', '1996-05-30',5,13,3),
  5. (23, 'Grzegorz', '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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement