Saved Bookmarks
| 1. |
Hira wants to store values in a table but the command below is giving errors . Write correct MYSQL command for creating table. CREATE employee (name VARCHAR, id INTEGER) |
|
Answer» CREATE TABLE employee (name VARCHAR, id INTEGER); |
|