向student表插入一条新记录的正确SQL语句是

admin2013-10-23  42

问题 向student表插入一条新记录的正确SQL语句是

选项 A、APPEND INTO student VALUES(’0401’,’王芳’,’女’,18)
B、APPEND student VALUES(’0401’,’王芳’,’女’,1 8)
C、INSERT INTO student VALUES(’0401’,’王芳’,’女’,18)
D、INSERT student VALUES(’0401’,’王芳’,’女’,l 8)

答案C

解析 在SQL语句中,插入表记录命令的格式为:INSERT INTO<表名>VALUES(<字段值列表>)。
转载请注明原文地址:https://jikaoti.com/ti/NET0FFFM
0

最新回复(0)