Home Answers Viewqa SQL What is the syntax for a CREATE TABLE statement?

 
 


hemant kumar
What is the syntax for a CREATE TABLE statement?
1 Answer(s)      2 years and 6 months ago
Posted in : SQL

What is the syntax for a CREATE TABLE statement?

View Answers

November 18, 2010 at 5:28 PM


Hi,

The CREATE TABLE statement is used to create a table in a database.

CREATE TABLE "table_name"
("column 1" "data_type_for_column_1",
"column 2" "data_type_for_column_2",
... )

Thanks,









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.