InterviewSolution
Saved Bookmarks
| 1. |
What Are The Different Tables Present In Mysql, Which Type Of Table Is Generated When We Are Creating A Table In The Following Syntax: Create Table Employee (eno Int(2),ename Varchar(10)) ? |
|
Answer» Total 5 types of tables we can create
MyISAM is the DEFAULT storage ENGINE as of MYSQL 3.23 and as a result if we do not specify the table name EXPLICITLY it will be assigned to the default engine. Total 5 types of tables we can create MyISAM is the default storage engine as of MySQL 3.23 and as a result if we do not specify the table name explicitly it will be assigned to the default engine. |
|