这相对容易,但我一直盯着代码太长并且犯错误。我需要验证当天是否填充了一个表,并且查询只需要今天的日期 - curdate() - 与date_pulled列相对,但我收到错误代码:1111。无效使用组函数。我在哪里弄乱。
select * from test where max(date(date_pulled))=curdate();
答案 0 :(得分:1)
你这里不需要max。你已经告诉查询选择等于当前日期的日期。
试试:
select * from test where date(date_pulled)=curdate();