删除C表中的列CCREDIT,请将下面的命令补充完整。( )ALTER TABLE C ____________ CCREDIT
A. CREATE
B. ADD
C. DELETE
DROP
查看答案
下列哪条语句可以创建视图( )。
A. create view v_student as select * from student;
B. alter view v_student as select * from student;
C. drop view v_student as select * from student;
D. sp_help view v_student as select * from student;
下列说法正确的是( )。
A. 执行“SELECT * FROM table_name WHERE…”语法后,定会返回所有行的数据
B. WHERE 子句在SELECT 子句中的为必选
C. 在SQL中,“!=”与“<>”作用完成相同
D. 语法“SELECT * FROM tanble_name WHERE Age NOT IS NULL”的写法正确
下列哪种连接是右外联接( )。
A. inner join
B. left outer join
C. right outer join
D. cross join
为学生选课系统中学生表student(sNO,sName,sSex,sAge,sCard)的身份证号列(sCard)添加唯一约束,正确的语句是( )。
A. alter table student add unique(sCard);
B. alter table student modify unique(sCard);
C. alter table student update unique(sCard);
D. alter table student add unique on (sCard);