输入banner图图片脚本导航/分类

MYSQL SQL_NO_CACHE的真正含义


+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (7.22 sec) 

 
mysql> select count(*) from users where email = ‘hello‘;
+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (0.45 sec)

mysql> select count(*) from users where email = ‘hello‘;
+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (0.45 sec)

mysql> select SQL_NO_CACHE count(*) from users where email = ‘hello‘;
+----------+
| count(*) |
+----------+
| 0 |
+----------+
1 row in set (0.43 sec)


MYSQL SQL_NO_CACHE的真正含义

标签: