Computer Science, asked by chevynationpart725, 1 day ago

syntax for creating table

Answers

Answered by somac295
0

Answer:

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. In this case, you want to create a new table

Similar questions