You can change a table to InnoDB using following query.
ALTER TABLE table_name ENGINE innodb;
MySQL Interview Questions and Answers
You can change a table to InnoDB using following query.
ALTER TABLE table_name ENGINE innodb;
You can delete a column using following query.
ALTER TABLE table_name DROP column_name;
ALTER TABLE table_name CHANGE column_name column_name VARCHAR(100).
SQL commands can be divided into three subgroups.
Data Definition Language (DDL) deals with database schema and descriptions of how the data should reside in the database, therefore language statements like CREATE TABLE or ALTER TABLE belong to DDL.
Data Manipulation Language (DML) deals with data manipulation, and therefore includes most common SQL statements such SELECT, INSERT, etc.
Data Control Language (DCL) includes commands such as GRANT, and mostly concerns with rights, permissions and other controls of the database system.