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 execute_prepared_stmt() Procedure

30.4.4.3 execute_prepared_stmt() 过程

给定一个 SQL 语句字符串,作为准备好的语句执行。准备好的语句在执行后被释放,因此它不适合重用。因此,该过程主要用于执行动态语句一次。

该过程使用 sys_execute_prepared_stmt 作为准备好的语句名称。如果该语句名称在过程调用时存在,其之前的内容将被销毁。

参数
  • in_query LONGTEXT CHARACTER SET utf8mb3: 要执行的语句字符串。

配置选项

execute_prepared_stmt() 操作可以使用以下配置选项或相应的用户定义变量进行修改(见 第 30.4.2.1 节,“sys_config 表”):

  • debug, @sys.debug

    如果该选项为 ON,则生成调试输出。默认为 OFF

示例
mysql> CALL sys.execute_prepared_stmt('SELECT COUNT(*) FROM mysql.user');
+----------+
| COUNT(*) |
+----------+
|       15 |
+----------+