InterviewSolution
Saved Bookmarks
| 1. |
Saumya had previously created a table named 'Product' in a database using MySQL. Later on she forgot the table structure. Suggest her suitable MySQL command through which she can check the structure of the already created table. |
|
Answer» DESCRIBE Product (or) DESC Product |
|