What are the different tables present in MySQL, and 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)) ?
One of my senior asked me, I am not able to find it out.
Starting with MySQL 5.5, InnoDB is the default storage engine. Prior to that, it was My ISAM.
http://dev.mysql.com/doc/refman/5.5/en/innodb-default-se.html
If you do not further specify the type of storage engine you want, you will get the default for the version of MySQL you are running.