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

admin2017-06-19  24

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

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

答案C

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

最新回复(0)