InterviewSolution
Saved Bookmarks
| 1. |
What is the command used to create a new table in a database |
|
Answer» CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ....); The SQL CREATE TABLE Statement |
|