prepare myfun from 'select * from a where b = ?';
set @str = '测试';
execute myfun using @str;
SQL预编译
预编译与执行存储过程
最新推荐文章于 2025-11-24 15:52:05 发布
预编译与执行存储过程
prepare myfun from 'select * from a where b = ?';
set @str = '测试';
execute myfun using @str;

被折叠的 条评论
为什么被折叠?