Anonymous Asked in Cars &Transportation · 2 weeks ago

What is the correct syntax to create a table in SQL?

SQL CREATE TABLE Statement CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, . Example. CREATE TABLE Persons ( PersonID int, . CREATE TABLE new_table_name AS. SELECT column1, column2,. FROM existing_table_name. . Example. CREATE TABLE TestTable AS. SELECT customername, contactname.


What is the syntax to create a table in SQL?

Syntax. CREATE TABLE table_name( column1 datatype, column2 datatype, column3 datatype, ..... columnN datatype, PRIMARY KEY( one or more columns ) ); CREATE TABLE is the keyword telling the database system what you want to do.

Which one is correct syntax of CREATE TABLE?

Que.Which among the following is the correct syntax for creating table?b.CREATE name;c.CREATE TABLEd.All of the mentionedAnswer:CREATE TABLE name;

Related Questions

Relevance
Write us your question, the answer will be received in 24 hours