php 日期模糊查询
日期是date类型,录入的时间格式为2000-01-11,我现在需要模糊查询数据库中01-01一月一日的所有数据select*fromtablewheretimelike...
日期是date类型,录入的时间格式为 2000-01-11, 我现在需要模糊查询数据库中 01-01 一月一日的所有数据
select * from table where time like '%01-01%' 这种模糊查询提示错误,有什么别的方法吗,急用,在线等!!!帮个忙,谢谢 展开
select * from table where time like '%01-01%' 这种模糊查询提示错误,有什么别的方法吗,急用,在线等!!!帮个忙,谢谢 展开
1个回答
展开全部
就是不管哪年,只要是元旦的数据就查询出来吗?
方法一、用函数判断年月
select * from table where month(time)=1 and day(time)=1
方法二、用函数把日期转换为文本后判断(各类数据库的转换函数可以有差异)
select * from table where to_char(time,'yymm')='0101'
或者
select * from table where date_format(time,'%m%d')='0101'
方法一、用函数判断年月
select * from table where month(time)=1 and day(time)=1
方法二、用函数把日期转换为文本后判断(各类数据库的转换函数可以有差异)
select * from table where to_char(time,'yymm')='0101'
或者
select * from table where date_format(time,'%m%d')='0101'
追问
赞一个,可以用,方法二不行,我用的是mysql数据库,这个转换函数是什么呢
追答
最后一个语句是针对MYSQL的,上面一个是ORACLE、MSSQL
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询