Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. create table lokale
  2. (
  3. id int(5) not null,
  4. nazwa char (50) not null,
  5. miasto char(50) not null,
  6. ulica char (50) not null,
  7. numer int(10) not null
  8. );
  9.  
  10. create table dania
  11. (
  12. id int(5) not null,
  13. typ int (50) not null,
  14. nazwa char(50) not null,
  15. cena int(10) not null
  16. );
  17.  
  18. create table rezerwacje
  19. (
  20. id int(5) not null,
  21. nr_stolika int (50) not null,
  22. data_rez datetime,
  23. liczba_osob int(10) not null,
  24. telefon char(50) not null
  25. );
  26.  
  27.  
  28.  
  29. create table pracownicy
  30. (
  31. id int(5) not null,
  32. imie char (50) not null,
  33. nazwisko char(50) not null,
  34. stanowisko int(10) not null
  35. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement