下列选项中,能够一次性向student表中添加三条记录的SQL语句是
A. INSERTINTOstudentVALUES(6,‘lilei',99);(7,'hanmeimei';,100);(8,'poly',40.5);
B. INSERTINTOstudentVALUES(6‘lilei',99)(7,'hanmeimei',100)(8,'poly',40.5);
C. INSERTINTOstudentVALUES(6,‘lilei',99),(7,'hanmeimei,100),(8,'poly',40.5);
D. INSERTINTOstudentVALUES(6,‘lilei',99)VALUES(7,'hanmeimei,100)VALUES(8,'poly',40.5);
下面选项中,用于将表student中字段grade值更新为80的SQL语句是
ALTERTABLEstudentsetgrade=80;
B. UPDATEstudentsetgrade=80wheregrade=80;
C. UPDATEstudentsetgrade=80wheregrade<=80;
D. UPDATEstudentsetgrade=80;