vote up 1 vote down star

Where can i find the manual for for MySQL 5.0 syntax? What i would need is the manual that corresponds to my MySQL server version (MySQL 5.0)?

Considering this: I am using MySQL 5.0 and NaviCat for GUI. If i run this query:

CREATE TABLE `genres` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`genre_name` VARCHAR( 25 ) NOT NULL
`description` VARCHAR( 100 ) NOT NULL
) ENGINE = innodb;

-> Navicat gives me a check your syntax error, and so does the sql prompt..

Where can i find info about SQL 5.0 syntax? I've tried the SQL site and Googled it but no luck. Maybe i am truly an idiot ;-)

flag

20% accept rate
Incidentally, you're missing a comma between the second and third fields. – Rob Kennedy Jan 5 at 14:46
thanks alot, appreciated – featureBlend Jan 5 at 14:50
How could you google and not find the MySQL manual...? – Eran Galperin Jan 5 at 14:51
Is mysql.com down? Talk to your ISP about that. – S.Lott Jan 5 at 15:13

5 Answers

vote up 4 vote down

How about http://dev.mysql.com/doc/refman/5.0/en/sql-syntax.html ?

There seem to be a missing coma (,) between 3rd and 4th lines in your query.

link|flag
vote up 1 vote down

It looks like you're missing a comma at the end of this line (comma added):

`genre_name` VARCHAR( 25 ) NOT NULL,

You need a comma after every line except the last line of a create table statement.

link|flag
vote up 1 vote down

This should point you in the right direction: MySQL Statement Syntax

link|flag
second time dude!! Cheers – featureBlend Jan 5 at 14:49
vote up 3 vote down

The official MySQL documentation is the best place. It has tutorials and references for everything

link|flag
vote up 5 vote down

http://dev.mysql.com/doc/refman/5.0/en/

More specifically, for the CREATE TABLE statement:

http://dev.mysql.com/doc/refman/5.0/en/create-table.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.