• 2022-06-06
    删除student表中id为1的记录()
    A: TRUNCATE FROM student where id=1;
    B: DELETE student where id=1;
    C: DELETE FROM student where id=1;
    D: DELETE INTO student where id=1;