
hey not describe the table first write the querry
show create table (table name) then paste it.
For Example
show create table amit
"Table" "Create Table"
"amit" "CREATE TABLE `amit` (
`book_id` int(100) default NULL,
`first_name` varchar(15) default NULL,
`last_name` varchar(15) default NULL,
`start_date` date default NULL,
`end_date` date default NULL,
`salary` float(8,2) default NULL,
`city` varchar(10) default NULL,
`description` varchar(15) default NULL
)
ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1"
here you see the ENGINE type is MyISAM in this you change the ENGINE type in Innodb on both the table.
