删除表中记录的语法:delete from table_name where condition;如果不指定条件,将删除整个表。示例:删除 student 表中年龄小于 18 的记录:delete from student where age < 18>