1. 程式人生 > 其它 >MySQL儲存過程使用動態表名

MySQL儲存過程使用動態表名

MySQL預設不支援表名作為變數名。

1)案例說明

若有一下儲存過程:

drop procedure if exists selectByTableName;
create procedure selectByTableName(in tableName varchar(50))
begin
    select * from tableName;
end;

在進行呼叫時會報錯:

call selectByTableName('user')
> 1146 - Table 'db2020.tablename' doesn't exist
> 時間: 0s

原因是它把變數tableName作為了表名,並不是把傳入的值作為表名。

2)解決方案

解決方法是使用concat函式,然後用預處理語句傳入動態表名來執行sql,對於增刪改查都適用。

將上述的儲存過程修改如下:

drop procedure if exists selectByTableName;
create procedure selectByTableName(in tableName varchar(50))
begin
    #定義語句
    set @stmt = concat('select * from ',tableName);
    #預定義sql語句,從使用者變數中獲取
    prepare stmt from @stmt;
    #執行sql語句
    execute stmt;
    #釋放資源,後續還可以使用
    deallocate prepare stmt;
end;

再呼叫時就能正常查詢出結果了。在預處理語句中,使用了使用者變數,變數名是自定義的。

就是這麼簡單,你學廢了嗎?感覺有用的話,給筆者點個贊吧 !