SQL Server: How To Create A Table Using SQL Script

Publicado el: 07 junio 2021
en el canal de: 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.


En esta página del sitio puede ver el video en línea SQL Server: How To Create A Table Using SQL Script de Duración hora minuto segunda en buena calidad , que subió el usuario Saturday Night Coder 07 junio 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 3,931 veces y le gustó 43 a los espectadores. Disfruta viendo!