Question: Write the SQL command used to insert the first record to the table movies mysql> DESC movies; | Field | Type | Null | Key
Write the SQL command used to insert the first record to the table movies
mysql> DESC movies; | Field | Type | Null | Key | Default | Extra +- | auto_increment | id | int(11) | NO | name | varchar(25) | YES | stars | varchar(100) | YES | PRI NULL | NULL | NULL mysql> SELECT FROM movies; | id | name | stars +-- 1 | Finding Nemo | Nemo, Dory, Marlin 2 Zombies | Meg Donnelly, Milo Manheim |
Step by Step Solution
There are 3 Steps involved in it
To insert the first record into the movies table you can use the following SQL INSERT command s... View full answer
Get step-by-step solutions from verified subject matter experts
