若用如下的SQL语句创建一个STUDENT表create table student(no char(4) not null,name char(8) not null,sex char(2),age int);则可以插入STUDENT表中的是()
A. ('1031','曾华',男,'23')
B. ('1031','曾华',NULL,NULL')
C. ('1031',NULL,'男',23)
D. (NULL,'曾华','男','23')
要在基本表S中增加一列CN(课程名),可用语句()
A. add table s(cn char(8))
B. add table s alter(cn char(8))
C. alter table s add cn char(8)
D. alter table s(add cn char(8))
在学生表S(SID,SNAME,AGE,SEX)中,S的属性分别表示学生的学号、姓名、年龄、性别,要在S表中删除“年龄”属性,可选用的SQL语句是()
A. delete age from s
B. alter table s drop age
C. update s age
D. alter table s 'AGE'