简体   繁体   中英

Dynamic Table name in MySQL Stored Procedure

How do I insert or create dynamic tables in MYSQL stored procedures like

declare @tblnm varchar(50);
set tblnm = "MyTbl";

create table tblnm(id int);

使用准备好的语句解决!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM