vote up 0 vote down star

SQL statement:

INSERT INTO order (`ORDER_ID`,`SALE_CODE`,`CREATED_AT`,`UPDATED_AT`) VALUES ('2646253286','HPHS20','2009-07-11 12:07:40','2009-07-11 12:07:40')

Error:

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 'order (`ORDER_ID`,`SALE_CODE`,`CREATED_AT`,`UPDATED_AT`) VALUES ('2646253286','H' at line 1
flag

2 Answers

vote up 4 vote down check

You have a table called order which is a reserved word in SQL. I'm not exactly sure how to get around it in MySQL, but in SQL Server it would be something like

insert into [order] ...
link|flag
Oh, of course. Thanks for the help! – James Skidmore Jul 11 at 16:17
1  
Actually, in SQL Server, you'd use [tablename] to fix this. The databasename prefix won't work, because even if you do use it you'd then need the schema (2005 onwards) or owner (2000 backwards) in between. – David M Jul 11 at 16:18
@David M - thanks for that. – banjollity Jul 11 at 16:56
vote up 4 vote down

Fix backticks (`) around order to fix this.

link|flag

Your Answer

Get an OpenID
or

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