单项选择题
以下不属于企业管理器功能的是()。
A.创建并管理所有数据库、登陆、用户、权限等。
B.管理和执行数据导入导出、数据库备份等多项辅助功能。
C.定义sqlserver组。
D.调试、执行sql语句,批处理和脚本。
点击查看答案&解析
相关考题
-
多项选择题
若student表中包含主键sudentid,则执行语句:update student set studentid=100 where studentid=101,结果可能是()。
A.错误提示:主键列不能更新。
B.更新了一条数据。
C.错误提示:违反主键约束。
D.既不提示错误,也不更新数据。 -
单项选择题
现有书目表book,包含字段:价格price(float),类别type(char);现在查询各个类别的平均价格、类别名称,以下语句正确的是()。
A.select avg(price),type from book group by type
B.select count(price),type from book group by price
C.select avg(price),type from book group by price
D.select count(price),type from book group by type -
单项选择题
Sql server提供了一些字符串函数,以下说法错误的是()。
A.selec tright(’hello’,3)返回值为:hel
B.selec tltrim(rtrim(’hello’))返回值为:hello(前后都无空格)
C.selec treplace(’hello’,’e’,’o’)返回值为:hollo
D.selec tlen(’hello’)返回值为:5
