注意:此页面搜索的是所有试题
国家开放大学MySQL数据库应用
下面关于索引描述中错误的一项是(C)
A.索引可以提高数据查询的速度 B.索引可以降低数据的插入速度
C.innodb存储引擎支持全文索引 D.删除索引的命令是dropindex

MySQL中,备份数据库的命令是(A)
A.mysqldump B.mysql
C.backup D.copy

创建用户的命令是(B)
A.joinuser B.createuser
C.createroot D.mysqluser

修改自己的mysql服务器密码的命令是(C)
A.mysql B.grant
C.setpassword D.changepassword

连接查询使用的关键字是(B)
A.UNION B.JOIN
C.ALL D.FULL

有订单表orders,包含用户信息userid,产品信息productid,以下(D)语句能够返回至少被订购过两回的productid
A.selectproductidfromorderswherecount(productid)>1
B.selectproductidfromorderswheremax(productid)>1
C.selectproductidfromorderswherehavingcount(productid)>1groupbyproductid
D.selectproductidfromordersgroupbyproductidhavingcount(productid)>1

子查询中可以使用运算符ANY,它表示的意思是(B)
A.满足所有的条件 B.满足至少一个条件
C.一个都不用满足 D.满足至少5个条件

一种存储引擎,其将数据存储在内存当中,数据的访问速度快,电脑关机后数据丢失,具有临时存储数据的特点,该存储引擎是(C)
A.MYISAM B.INNODB
C.MEMORY D.CHARACTER

MySQL中存储用户全局权限的表是(D)
A.table_priv B.procs_priv
C.columns_priv D.user

删除用户的命令是(A)
A.dropuser B.deleteuser
C.droproot D.truncateuser

给名字是zhangsan的用户分配对数据库studb中的student表的查询和插入数据权限的语句是(B)
A.grantselect,insertonstudb.student for‘zhangsan’@’localhost’
B.grantselect,insertonstudb.student to‘zhangsan’@’localhost’
C.grant‘zhangsan’@’localhost’toselect,insertforstudb.student
D.grant‘zhangsan’@’localhost’tostudb.studentonselect,insert

哪个连接MySQL数据库的语句格式是错误的( D)
A.mysql - - host=myhost.example.com B.mysql –h myhost.example.com
C. mysql –hmyhost.example.com D.mysql –H myhost.example.com

查看MySQL版本语句是(A )
A.mysql - - version B.mysql - - VERSION
C.mysql - - help D.mysql - - v

设置存储过程中语句结束符的命令是( C)
A.setB.end
C. delimiter D.finish

关于SELECT语句以下哪一个描述是错误的( C)
A.SELECT语句用于查询一个表或多个表的数据
B.SELECT语句属于数据操作语言(DML)
C.SELECT语句的列必需是基于表的列的
D.SELECT语句表示数据库中一组特定的数据记录