标签: mysql go
我正在调用一个mysql 5.7存储过程,该过程有两个带go mysql driver的语句。
mysql 5.7
go mysql driver
第一个语句只为数据库
例如:select @location=location, @stat=stat from user where ...
select @location=location, @stat=stat from user where ...
第二个陈述
Select id, name, ... from user where ..
我无法控制程序,需要使用第二个语句的结果。
如何在go中访问结果?