Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. CREATE TABLE Pracownicy (
  2. PID integer PRIMARY KEY AUTOINCREMENT,
  3. Imie string,
  4. Nazwisko string,
  5. Stopień string,
  6. email string,
  7. Zewnętrzny boolean
  8. );
  9.  
  10. CREATE TABLE ProgramyStudiow (
  11. ProgID integer PRIMARY KEY AUTOINCREMENT,
  12. NazwaPrzedmiotu string,
  13. Rodzaj string,
  14. LiczbaGodzin integer,
  15. ECTS integer,
  16. RokStudiow integer,
  17. Zaliczenie string
  18. );
  19.  
  20. CREATE TABLE PrzydzialyZajec (
  21. PrzydzialID integer PRIMARY KEY AUTOINCREMENT,
  22. Prowadzacy integer,
  23. Przedmiot integer,
  24. Gupa integer
  25. );
  26.  
  27. CREATE TABLE TerminyZjazdow (
  28. ZID integer PRIMARY KEY AUTOINCREMENT,
  29. termin date
  30. );
  31.  
  32. CREATE TABLE PlanZajec (
  33. Przydzial integer,
  34. Zjazd integer,
  35. Sala string,
  36. Od integer,
  37. Do integer
  38. );
  39.  
  40. CREATE TABLE Grupy (
  41. GID integer PRIMARY KEY AUTOINCREMENT,
  42. Rok string,
  43. Nazwa string
  44. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement