软件环境
操作系统:Ubuntu16.04-server
MySQL版本:5.7.25
故障一只能通过localhost登录MySQL
报错如下
$mysql -h172.16.0.1 -uroot -p123456mysql: [Warning] Using a password on the command line interface can be insecure.ERROR 1...
MySQL是如何进行排序的?假设有一个表t结构如下图所示:
id为主键,type上建有索引,那么如果要查类型为1,val最小的1000行,那么SQL语句如下:SELECT type, val, detail FROM t WHERE type = 1 ORDER BY val LIMIT 1000;
全字段排序对上述查询执行explain结果如下:
Using filesort表示需要排序,...