The word “condition” is a reserved name in MySQL 5, apparently. It was not in MySQL 4. Thus, if you have a query where you do something like this:
SELECT the_field_name AS condition FROM the_table
That causes problems.
The word “condition” is a reserved name in MySQL 5, apparently. It was not in MySQL 4. Thus, if you have a query where you do something like this:
SELECT the_field_name AS condition FROM the_table
That causes problems.