文档首页
MySQL 9.0 参考手册
相关文档 下载本手册
PDF (US Ltr) - 40.0Mb
PDF (A4) - 40.1Mb
手册页 (TGZ) - 258.2Kb
手册页 (Zip) - 365.3Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 9.0 参考手册  /  ...  /  ps_thread_account() 函数

30.4.5.14 ps_thread_account() 函数

给定一个 Performance Schema 线程 ID,返回与该线程关联的 user_name@host_name 帐户。

参数
  • in_thread_id BIGINT UNSIGNED: 要返回其帐户的线程 ID。该值应与某些 Performance Schema 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                                           |
+----------------------------------------------------------+