Creating table in SQL Server
You can create table in MS SQL Server either of the following way, •Enterprise Manager •Transact SQL (T-SQL) statement Here I will show you how to create table using T-SQL. The syntax is as below for creating table, CREATE TABLE <TABLE_NAME> …