Write a SQL query to create the table PT1.
Answers
Answered by
2
Answer:
CREATE TABLE PT1();
YOU HAVE NOT SPECIFIED ANY CONDITIONS BROTHER WHAT DO YOU WANT IN THE TABLE
Answered by
0
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