下面是我在 php 中的 sql 查询。
SELECT * FROM Tbl_Players I WHERE DATEDIFF( DAY , NOW( ) , I.FirstLoginTime ) <1 LIMIT 0 , 30
FirstLoginTime 是 sql 表中的字段,其值为 DateTime。
我希望在一天之前插入所有数据。
它给了我错误:
#1064 - 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 ' I.FirstLoginTime) < 1
LIMIT 0, 30' at line 3
感谢帮助。