MySQL - 命令行中监测语句执行效率

mysql> set profiling=1;
mysql> select distinct(num) from test_test; 
mysql> select num from test_test group by num;
mysql> show profiles;
profiles功能

你可能感兴趣的:(MySQL - 命令行中监测语句执行效率)