The following query will not execute
mysql_query("SELECT * FROM order WHERE orderID = 102;");
It produces the following error message:
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 WHERE orderID = 102' at line 2
How can I write SQL that will successfully query this table?