通过SQL Command显示MySQL主机?
要通过SQL命令显示MySQL主机,请使用系统变量“主机名”。
以下是显示主机的查询-
mysql> select @@hostname;
这是输出-
+-----------------+ | @@hostname | +-----------------+ | DESKTOP-QN2RB3H | +-----------------+ 1 row in set (0.00 sec)
或者,您可以使用“showvariables”命令通过SQL命令显示MySQL主机。
show variables where Variable_name like '%host%';
以下是输出-
+-------------------------------+-----------------+ | Variable_name | Value | +-------------------------------+-----------------+ | host_cache_size | 279 | | hostname | DESKTOP-QN2RB3H | | performance_schema_hosts_size | -1 | | report_host | | +-------------------------------+-----------------+ 4 rows in set (0.07 sec)