题解 | #更新记录(二)#
更新记录(二)
https://www.nowcoder.com/practice/0c2e81c6b62e4a0f848fa7693291defc
update exam_record set submit_time = '2099-01-01 00:00:00', score = 0 where date(start_time) < "2021-09-01" and submit_time is null
注意题干中的关键字“ xxx 时间 “ 之前这个条件, 那么这里马上就要想到要进行时间的比较 可以直接 xxx_time < "2021-09-01 00:00:00", 也可以采用date() 函数来进行比较;第二个条件就是 ”未完成“, 即完成时间为null,也就是题目中的提交时间 ----- submit_time 为 NULL。