Saved Bookmarks
| 1. |
How to create a query in the database management system? |
|
Answer» CREATING a Table CREATE command can ALSO be used to create tables. Now when we create a table, we have to specify the DETAILS of the columns of the tables too. We can specify the names and datatypes of various columns in the create command itself. Following is the syntax, CREATE TABLE create table command will tell the database system to create a new table with the GIVEN table name and column information |
|