Created
April 6, 2017 10:34
-
-
Save camilajenny/7d0a41d0d26670578371b7a749525cd7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Created 06.04.2017 | |
Modified 06.04.2017 | |
Project | |
Model | |
Company | |
Author | |
Version | |
Database MS SQL 7 | |
*/ | |
Create table [Wydawnictwo] ( | |
[idWyd] Integer NOT NULL, | |
[nazwa] Char(30) NULL, | |
[adres] Char(30) NULL, | |
[telefon] Char(15) NULL, | |
Primary Key ([idWyd]) | |
) | |
go | |
Create table [Gr_Tematyczna] ( | |
[idGrupy] Integer NOT NULL, | |
[charakterystyka] Char(30) NULL, | |
Primary Key ([idGrupy]) | |
) | |
go | |
Create table [Autor] ( | |
[idAutora] Integer NOT NULL, | |
[nazwisko] Char(30) NULL, | |
[imie] Char(30) NULL, | |
[notaBio] Char(100) NULL, | |
Primary Key ([idAutora]) | |
) | |
go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment