mysql日期模糊查找的方法
Posted superming168
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql日期模糊查找的方法相关的知识,希望对你有一定的参考价值。
mysql模糊查询有以下三种方法:
1.Convert转成日期时间型,在用Like查询。select * from table1 where convert(date,DATETIME) like ‘2006-04-01%‘
第一种方法应该适用与任何数据类型;
2.Betweeselect * from table1 where time between ‘2018-08-01 0:00:00‘ and ‘2018-08-01 24:59:59‘";
第二种方法适用String外的类型;
3 datediff()函数select * from table1 where datediff(create_time,‘2018-08-01‘)=0
第三种方法则是为date类型定制的比较实用快捷的方法。