Advertisement
Guest User

RATATATA

a guest
Jan 29th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. USE PAPETERIE_DB
  2. GO
  3. DROP TABLE dbo.Articles;
  4. GO
  5. CREATE TABLE dbo.Articles(
  6. idArticle int IDENTITY(1,1) NOT NULL,
  7. reference nchar(10) NOT NULL,
  8. marque nvarchar(200) NOT NULL,
  9. designation nvarchar(250) NOT NULL,
  10. prixUnitaire float NOT NULL,
  11. qteStock int NOT NULL,
  12. grammage int NULL,
  13. couleur nvarchar(50) NULL,
  14. type nchar(10) NOT NULL,
  15. CONSTRAINT PK_Articles PRIMARY KEY
  16. (
  17. idArticle
  18. ))
  19. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement