【名词&注释】
数据库。、建数据库(database construction)
[多选题]下列创建表student的语句不正确的是()
A. createtablestudent(学号char(10),姓名char(2),年龄int(4))
B. createtablestudent(学号char(10),姓名char(10),年龄int)
C. createtablestudent(学号char(10)姓名char(10)年龄int)
D. 以上都不能正确创建一个表
查看答案&解析
查看所有试题
学习资料:
[单选题]下列SQL语句中,能够完成插入功能的是()。
A. INSERTINTO学生表VALUES(’2006001’,’王小明’,’男’)
B. UPDATE学生表SET姓名=’王莉’WHERE学号=’2006001’
C. DELETE学生表SET姓名=’王莉’WHERE学号=’2006001’
D. DELETEFROM学生表WHERE性别=’男&rsquo
[单选题]数据库中有一张表名称为Student,有列Name,Age,IDCard,Sex。要求查询所有男同学信息,下列哪个SQL语句是正确的?()
A. Select*FromStudentWhereSex=’男’
B. Select*FromStudentWhereSex<>’女’
C. Select*FromStudentWhereSexLike’男’
D. Select*FromStudentWhereSexIn’男&rsquo
[单选题]创建一个名为’catt’的新表,要求该表包含’kehu’表的所有记录,应使用的SQL语句是()
A. select*intocatt where from kehu
B. select*into catt from kehu
C. insert into catt select*from kehu
D. inser tinto catt from select*from kehu
[单选题]对于存储过程test(@p int),调用该存储过程并付给参数1,以下能正确执行的语句是()
A. exec test 1
B. selec ttest @p=1
C. exce test p=1
D. select test p=1
[单选题]游标的主要作用是()
A. 提高数据查询效率
B. 实现复杂的查询
C. 提供对查询结果的详细处理
D. 保护敏感的数据
[单选题]()能够创建数据库。
A. 任何SQL Server用户
B. 任何Windows用户
C. Dbcreator角色的成员
D. DB_owner角色的成员
本文链接:https://www.51bdks.net/show/o39vej.html