题目内容

使用SSMS连接数据库时,服务器地址的写法支持以下哪些

A. 机器名
B. ip地址
C. .
D. 以上都不支持

查看答案
更多问题

请选择正确的三级模式映射关系

A. 外模式/模式
B. 模式/内模式
C. 外模式/内模式
D. 模式/外模式

学生表(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表名

答案查题题库