我不知道为什么我得到这个mysql错误。最初我没有“约会”。然后我试着'''和'''没有任何运气。怎么了?
SELECT COUNT(user) WHERE user=1 AND pass_time<'2009-09-21 13:44:38';
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 'WHERE user=1 AND pass_time<'2009-09-21 13:44:38''
答案 0 :(得分:4)
您需要指定您选择的表格。 E.g。
SELECT COUNT(user) FROM my_table WHERE ...