Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  The ps_thread_account() Function

30.4.5.14 PS_thread_account() 函数

给定一个性能架构线程 ID,返回与该线程关联的 user_name@host_name 账户。

  • in_thread_id BIGINT UNSIGNED: 需要返回账户的线程 ID。该值应与性能架构threads 表行的 THREAD_ID 列相匹配。

一个 TEXT 值。

mysql> SELECT sys.ps_thread_account(sys.ps_thread_id(CONNECTION_ID()));
+----------------------------------------------------------+
| sys.ps_thread_account(sys.ps_thread_id(CONNECTION_ID())) |
+----------------------------------------------------------+
| root@localhost                                           |
+----------------------------------------------------------+