学生表(tb_stu)有学生编号(code)和班级编号(classCode)作为联合主键,请选择合适的建立主键的代码
A. create table tb_stu( code int not null primary key, classCode int not null primary key,name varchar(200))
B. create table tb_stu( code int not null, claasCode int not null,name varchar(200),primary key(code,classCode))
C. alter table tb_stu add primary key(code,classCode)
D. alter table tb_stu add constraint pk_stu primary key(code,classCode)
查看答案
选择下面正确的表述
A. drop column 列名 数据类型
B. drop primary key 主键列
C. drop table 表名
D. alter table 表名 add column 列名 数据类型 约束
删除表中的所有记录()
A. delete from表名
B. drop table表名
C. truncate from表名
D. truncate table表名
关于删除操作代码,请选择正确的描述( )
A. drop from 表名
B. delete table 表名
C. delete from 表名
D. drop table 表名
从表中删除数据可以选择哪些语句( )
A. drop table 表名
B. truncate table 表名
C. delete from 表名
D. truncate from table