Crear sintaxis de la declaración de tabla en SQL Server
--****************** For More help, visit NAYCode.com
CREATE TABLE [table_name]
(
Col1 [datatype],
Col2 [datatype]
CONSTRAINT [PK_Name] PRIMARY KEY CLUSTERED
(
[Col1] ASC
)
)
Ayaz Ullah Sharif