Monday, May 11, 2009

MySQL – Create Table – Difference between TYPE and ENGINE

The syntax 'TYPE' is deprecated and will be removed in MySQL 5.2. Please use 'ENGINE' instead.

Eg:
CREATE TABLE my_table
(
my_key INTEGER NOT NULL,
my_data VARCHAR(20) NOT NULL
PRIMARY KEY (my_key)
) ENGINE = INNODB;

No comments:

Post a Comment