题解 | #删除记录(一)#

删除记录(一)

https://www.nowcoder.com/practice/d331359c5ca04a3b87f06b97da42159c

主要在函数使用,mysql日期相减得到分钟有2种方法
1,timestempdiff
TIMESTAMPDIFF(MINUTE,start,end) 
那么,
DELETE FROM exam_record
WHERE TIMESTAMPDIFF(MINUTE, start_time, submit_time) < 5
    AND score < 60;
2,minute和timediff 结合使用

TIMEDIFF(start, end) 得到两个日期之间的差值.
TIMEDIFF函数接受两个必须为相同类型的参数,即TIMEDATETIME
delete from exam_record where minute(TIMEDIFF(submit_time,start_time))<5 and score<60
#MySQL#
全部评论

相关推荐

安静的垂耳兔在泡澡:ks已经第八次投递了,它起码挂了还让你再投,不错了
点赞 评论 收藏
分享
评论
3
收藏
分享
牛客网
牛客企业服务