Skip to content

Instantly share code, notes, and snippets.

@banan314
Created April 6, 2017 10:34
Show Gist options
  • Save banan314/7d0a41d0d26670578371b7a749525cd7 to your computer and use it in GitHub Desktop.
Save banan314/7d0a41d0d26670578371b7a749525cd7 to your computer and use it in GitHub Desktop.
/*
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