SQL과 관리 명령의 차이
관리 명령이란
mysql> show status like 'Uptime';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime | 26 |
+---------------+-------+
1 row in set (0.00 sec)mysql> show status like 'Queries';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Queries | 5 |
+---------------+-------+
1 row in set (0.01 sec)관리 명령에서 기억해야 할 점
Last updated