Documentation Home
MySQL 8.3 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

MySQL 8.3 Reference Manual  /  ...  /  The ps_is_account_enabled() Function

30.4.5.9 ps_is_account_enabled() 函数

返回 YESNO,以指示给定帐户的 Performance Schema instrumentation 是否启用。

参数
  • in_host VARCHAR(60):要检查的帐户的主机名。

  • in_user VARCHAR(32):要检查的帐户的用户名。

返回值

一个 ENUM('YES','NO') 值。

示例
mysql> SELECT sys.ps_is_account_enabled('localhost', 'root');
+------------------------------------------------+
| sys.ps_is_account_enabled('localhost', 'root') |
+------------------------------------------------+
| YES                                            |
+------------------------------------------------+