InterviewSolution
Saved Bookmarks
| 1. |
How do you create a table using MySQL? |
|
Answer» Use the following to create a table using MySQL: CREATE TABLE HISTORY (AUTHOR VARCHAR(128),title VARCHAR(128),type VARCHAR(16),year CHAR(4)) ENGINE InnoDB; |
|