标签:row 临时表 sele 磁盘 strong str 出现 去掉 --
【查询提示】
MySQL中可以给select语句各种提示,比如告诉它“查询的结果集特别大,请直接用磁盘临时表”,“请让这条select优先执行” ....
【查询提示:与结果集相关】
与结果集相关的查询提示只有两个“distinct”,“all”
1): distinct 表示去掉重复行
2): all 表示不要去重(也就是说默认的就是all)
select all id,name from person ; +----+------+ | id | name | +----+------+ | 1 | 123 | +----+------+ 1 row in set (0.00 sec)
【查询提示:操作相关提示】
这类提示有两个“high_priority”,“straight_join”;个人感觉这两个名字起的特别好,特别的见名知意。
1): high_priority 让这条查询语句优先执行
2): straight_join 以select中表出现的次序为join的次序
明天再写....
----
标签:row 临时表 sele 磁盘 strong str 出现 去掉 --
原文地址:https://www.cnblogs.com/JiangLe/p/9671096.html