Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the below code running and cannot find what the error is. Can anyone suggest anything I should check?

$result = mysql_query("SELECT * FROM table") or die (mysql_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 'table' at line 1

share|improve this question
1  
table is a reserved keyword in mysql – Nirav Ranpara Nov 16 '12 at 11:14

1 Answer

up vote 17 down vote accepted

table is a reserved keyword, you must escape it with backtick.

SELECT * 
FROM `table`
share|improve this answer
1  
Thank you. Obvious, but I didn't know. Cheers – Max Nov 16 '12 at 11:11
2  
@Max Please accept the answer if it solves your problem. – Aleks G Nov 16 '12 at 11:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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