本文介绍了MySQL 将 EXECUTE 的结果保存在变量中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
如何将 EXECUTE 语句的结果保存到变量中?类似的东西
How do I save the results of EXECUTE statement to a variable? Something like
推荐答案
如果你想用准备好的语句来做到这一点,那么你需要在原始语句声明中包含变量赋值.
If you want to do this with a prepared statement, then you need to include the variable assignment in the original statement declaration.
如果您想使用存储的例程,那就更容易了.可以将存储函数的返回值直接赋值给变量,存储过程支持输出参数.
If you want to use a stored routine it's easier. You can assign the return value of a stored function directly to a variable, and stored procedures support out parameters.
示例:
准备好的声明:
存储函数:
存储过程:
这篇关于MySQL 将 EXECUTE 的结果保存在变量中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!