1、使用curdate()函数返回当前日期返回年月日。
2、使用now()函数返回当前日期返回年月日时分秒。
3、使用curTime()返回当前日期返回时分秒时间。
select curDate() #获取当前日期select curTime() #获取当前时间select now() #获取当前日期+时间列举1个天数加减的例子,其他的看英文意思就可以理解了
select date_add(now(), interval 1 day) #当前日期天数+1
select date_add(now(), interval -1 day) #当前日期天数-1
select date_add(now(), interval 1 hour)
select date_add(now(), interval 1 minute)
select date_add(now(), interval 1 second)
select date_add(now(), interval 1 microsecond)
select date_add(now(), interval 1 week)
select date_add(now(), interval 1 month)
select date_add(now(), interval 1 quarter)
select date_add(now(), interval 1 year)
date_sub与date_add功能整合相反
select
date_sub(now(), interval 1 day) #当前日期天数-select date_sub(now(),
interval -1 day) #当前日期天数+select date_sub(now(), interval 1
hour)select date_sub(now(), interval 1 minute)select date_sub(now(),
interval 1 second)select date_sub(now(), interval 1 microsecond)select
date_sub(now(), interval 1 week)select date_sub(now(), interval 1
month)select date_sub(now(), interval 1 quarter)select date_sub(now(),
interval 1 year)
datediff函数计算两个日期间隔的天数
datediff(date1, date2) #date1 - date2
timediff函数计算两个时间间隔
timediff(time1, time2) #time1 - time2
time1和time2的格式必须要一样,返回时间差
str_to_date(str, format) 字符串转换为日期
select str_to_date('11/09/2014', '%m/%d/%Y')-- 2014-11-09
做一个学校项目的时候 要根据上中晚查询 最后用的是
date_format(t1.record_time, '%H:%i:%s')
SELECT t2.class_name,t1.class_no,t1.course_id,t1.course_name,t1.id,t1.pic_url,t1.record_time,t1.sign_day,t1.status,t1.student_name,t1.student_no FROM t_e_sign t1 LEFT JOIN t_e_sys_org t2 ON t2.org_code = t1.class_no WHERE IF (:studentName is not null, t1.student_name LIKE CONCAT('%',:studentName,'%') , 1 = 1) and IF (:className is not null, t2.class_name LIKE CONCAT('%',:className,'%') , 1 = 1) and IF (:startTime is not null, date_format(t1.record_time, '%Y-%m-%d') >=:startTime , 1 = 1) and IF (:endTime is not null, date_format(t1.record_time, '%Y-%m-%d') <=:endTime , 1 = 1) and IF (:startdetailTime is not null, date_format(t1.record_time, '%H:%i:%s') >=:startdetailTime , 1 = 1) and IF (:enddetailTime is not null, date_format(t1.record_time, '%H:%i:%s') <=:enddetailTime , 1 = 1) ORDER BY ?#{#pageable}",
整个语句也写下吧
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)