SQL Server: How To Create A Table Using SQL Script

Publié le: 07 juin 2021
sur la chaîne: Saturday Night Coder
3,931
43

In this video we take a look at how to create a table using in SQL Server using SQL script within SQL Server Management Studio.

Notes:-

It's worth pointing out that when I mentioned choosing a larger size for columns that only refers to variable length columns that could be larger than anticipated i.e. free text. Of course if you actually know the size of the column and that is fixed, you should set your column sizes specifically.

Links:-

(Microsoft SQL Server Management Studio: How To Download & Use For Free)    • Microsoft SQL Server Management Studio: Ho...  

Script:-

CREATE TABLE [dbo].[Config](
[ID] INTEGER IDENTITY(1, 1) PRIMARY KEY,
[Key] VARCHAR(64) NOT NULL UNIQUE,
[Value] VARCHAR(512)
)
GO

If you enjoyed the video don't forget to like, comment and subscribe. Thanks for watching.


Sur cette page du site, vous pouvez voir la vidéo en ligne SQL Server: How To Create A Table Using SQL Script durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Saturday Night Coder 07 juin 2021, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 3,931 fois et il a aimé 43 téléspectateurs. Bon visionnage!