mysql查询当天的所有数据

        mysql查询今天的所有数据,可以使用如下方式:

        select * from table_name where date(某个字段名) = curdate();

        例如我想查询task表中今天添加的数据,task表中有tCreateTime字段,则:

        select * from task where date(tCreateTime) = curdate();


        

你可能感兴趣的:(mysql查询当天的所有数据)