Table in SQL
How to create table in sql server ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shweta LodhaPosted Nov 29, 2014, 3:18 AM
CREATE TABLE table_name
(
column_name1 data_type(size),
column_name2 data_type(size),
column_name3 data_type(size),
....
);
For more info:
http://www.w3schools.com/sql/sql_create_table.asp
Shantoh SinghPosted Nov 29, 2014, 10:47 PM
Manish Kumar ChoudharyPosted Nov 29, 2014, 3:29 AM
Hi Shantoh Singh,
Read this link u will get all the basic information about sql server.
http://www.tutorialspoint.com/sql/sql-create-table.htm