MYSQL的日期格式date_format用法

MYSQL的日期格式date_format用法,第1张

做一个学校项目的时候 要根据上中晚查询 最后用的是

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}", 

整个语句也写下吧

设置某字段为当前时间,修改日期类型为timestamp并允许空,如下:

create

table

`test`

(`aaaa`

varchar(50)

not

null,`createday`

timestamp

null

default

current_timestamp

on

update

current_timestamp)

engine=innodb

default

charset=utf8

如果是在navicat下 *** 作的话,设置字段的类型为timestamp,默认值写上

current_timestamp.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8457777.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-16
下一篇 2023-04-16

发表评论

登录后才能评论

评论列表(0条)

保存