题解 | #删除记录(一)#
删除记录(一)
https://www.nowcoder.com/practice/d331359c5ca04a3b87f06b97da42159c
delete from exam_record where timestampdiff (minute,start_time,submit_time) <5 and score<60
该题考查删除某行数据的语法
delete from 表名 where (条件...)
删除记录(一)
https://www.nowcoder.com/practice/d331359c5ca04a3b87f06b97da42159c
delete from exam_record where timestampdiff (minute,start_time,submit_time) <5 and score<60
该题考查删除某行数据的语法
delete from 表名 where (条件...)
相关推荐