SQL Server: How To Create A Table Using SQL Script

Pubblicato il: 07 giugno 2021
sul canale di: 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.


In questa pagina del sito puoi guardare il video online SQL Server: How To Create A Table Using SQL Script della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Saturday Night Coder 07 giugno 2021, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 3,931 volte e gli è piaciuto 43 spettatori. Buona visione!