我正在阅读此页面上的 MySQL 文档:http: //dev.mysql.com/doc/refman/5.1/en/set-statement.html
它经常使用“@@”,但没有定义“@@”的含义。
另一个例子是变量名:
mysql> select @@hostname;
+------------+
| @@hostname |
+------------+
| server1 |
+------------+
1 row in set (0.00 sec)
mysql> select @hostname;
+-----------+
| @hostname |
+-----------+
| NULL |
+-----------+
1 row in set (0.00 sec)
什么是@与@@?