Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.28 KB | None | 0 0
  1. USE [Labo1BD] -- la DB cible
  2. GO
  3.  
  4. CREATE TABLE [dbo].[Course]( --dbo = le nom du schéma
  5.     [Id] [bigint] IDENTITY(1,1) NOT NULL, --identity = Auto increment en SQL Server
  6.     [Description] [nvarchar](255) NOT NULL,
  7.  CONSTRAINT [PK_Course] PRIMARY KEY  
  8. (
  9.     [Id] ASC
  10. ))
  11. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement