mysql查询今天的所有数据,可以使用如下方式:
select * from table_name where date(某个字段名) = curdate();
例如我想查询task表中今天添加的数据,task表中有tCreateTime字段,则:
select * from task where date(tCreateTime) = curdate();
时间: 2024-11-11 15:10:55
mysql查询今天的所有数据,可以使用如下方式:
select * from table_name where date(某个字段名) = curdate();
例如我想查询task表中今天添加的数据,task表中有tCreateTime字段,则:
select * from task where date(tCreateTime) = curdate();