[Solved] Is condition considered a special word in mySQL?


Yes, condition is a reserved word as of MySQL 5.0. Your original Create Table works because you can use ` to quote reserved words for use in table/field names.

Works:

SELECT * FROM `condition`;
DROP TABLE `condition`;
# etc.

Doesn’t:

SELECT * FROM condition

0

solved Is condition considered a special word in mySQL?