Interview Question in Sql Server Views


 

Interview Question :: PHP Private Messaging system MySQL problems


Whenever I try and enter the mysql code from (http://www.pixel2life.com/publish/tutori...
I get this error.
Does anyone know what's wrong with this? Please help!
Thanks


Error

SQL query:

CREATE TABLE `messages` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`title` VARCHAR( 255 ) NULL ,
`message` TEXT NOT NULL ,
`from` INT( 11 ) NOT NULL ,
`to` INT( 11 ) NOT NULL ,
`from_viewed` BOOL NOT NULL DEFAULT '0',
`to_viewed` BOOL NOT NULL DEFAULT '0',
`from_deleted` BOOL NOT NULL DEFAULT '0',
`to_deleted` BOOL NOT NULL DEFAULT '0',
`from_vdate` DATETIME NULL ,
`to_vdate` DATETIME NULL ,
`from_ddate` DATETIME NULL ,
`to_ddate` DATETIME NULL ,
`created` DATETIME NOT NULL ,
) ENGINE = MYISAM

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') ENGINE = MYISAM' at line 31
Answers to "PHP Private Messaging system MySQL problems"
RE: PHP Private Messaging system MySQL problems?

Take out the comma at the end of the second last line.

i.e. `created` DATETIME NOT NULL) ENGINE=MYISAM
 
Vote for this answer ::  
Update Alert Setting