MySQL存储过程接受表名变量作为参数

一般情况下,MySQL的存储过程不接受表名变量作为参数,否则会报错,如下图所示:

MySQL存储过程接受表名变量作为参数_第1张图片

上图中的报错信息显示在test数据库中,没有名为grade的表。这表示存储过程tname_example没有正确识别出传递给它的表名参数。

为解决这个问题,我们可以在存储过程过程中使用prepare语句:

MySQL存储过程接受表名变量作为参数_第2张图片

上图中的拼接语句concat('select * from ',table_name)值得注意,concat函数的返回结果必须是符合MySQL语法的SQL语句。因此,对于concat函数的第一个参数'select * from '来说,from后面一定要留有空格。

参考:

https://blog.csdn.net/qq_41080850/article/details/85064850

https://blog.csdn.net/makesibushuohua/article/details/80139016

https://www.cnblogs.com/xuehuashanghe/p/9487043.html

https://dev.mysql.com/doc/refman/8.0/en/sql-syntax-prepared-statements.html

https://dev.mysql.com/doc/refman/8.0/en/prepare.html

https://dev.mysql.com/doc/refman/8.0/en/stored-program-restrictions.html

你可能感兴趣的:(MySQL)