2022-11-01 1、MySQL查询表的统计信息可以通过以下哪些方式?ABDE A 通过information_schema.tables B 通过MySQL.innodb_table_stats C show tables; D show table status; E 通过information_schema.STATISTICS 2、以下哪些不是mysql 8.0中的新特性? D A 窗口函数 B 不可见索引 C 索引跳扫 D 索引反向扫描 3、MySQL中,表test(a int,b int,time date)涉及以下3条sql: select * from test where a=1 and b=1; select * from test where b=1; select * from test where b=1 order by time desc; 只建一个索引,如何建最优() A A idx_btime(b,time) B idx_ab(a,b) C idx_ba(b,a) D idx_abtime(a,b,time) 2022-11-12
多选题
在mysql5.7版本中,重命名数据库的方法通常有几种?(AC)
A、通过mysqldump进行数据库的备份再导入
B、RENAME DATABASE db_name TO new_db_name
C、重命名数据库里面的所有表
下面哪个选项不是衡量 MySQL 数据库性能的?(A)
A、HDD Capability
B、QPS
C、TPS
D、CONNECTION COUNT
单选题
MySQL数据库四种特性,不包括(D)
A、原子性
B、隔离性
C、一致性
D、事务性