标签:
mysql查询今天的所有数据,可以使用如下方式:
select * from table_name where date(某个字段名) = curdate();
例如我想查询task表中今天添加的数据,task表中有tCreateTime字段,则:
select * from task where date(tCreateTime) = curdate();
标签:
原文地址:http://my.oschina.net/xiaoyuHe/blog/517616