MS SQL Server Create Table

The MS SQL Server Create Table Tool allows users to visually create tables. After entering in the table name and the number of columns, the tool allows the user to enter the following information for each column of the table:

Column Name
Column Type (for example, Integer, Char, Varchar, etc.)
Length or Precision
Scale (for decimal columns)
Nullability (whether or not the column accepts null)
Primary Key (whether or not the column is a primary key)
Unique (whether to add a unique constraint to the column)
Default Value (the default value that should be inserted when a null is attempted to be inserted into the column)
Identity (whether the column auto-increments)
Identity Start
Identity Increment

After entering the column information, the Create Table Tool can generate and/or execute the SQL needed to create the table.

Listed below is an example of the SQL the Create Table Tool generates for a sample MS SQL Server table.

CREATE TABLE sample.dbo.test_table
(col1 int NOT NULL,
col2 char(25),
col3 decimal(10,2),
col4 varchar(25),
col5 datetime,
PRIMARY KEY (col1),
UNIQUE (col2))

MS SQL Server Create Table