mysql:如何将数据添加到存储在变量中的现有数据中?

5tmbdcev  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(378)

我希望向mysql中创建的现有变量添加数据。

set @variable = select * from b where b.id = 35;
``` `@variable = select * from b where b.name = "dheeraj";` 我怎样才能继续进行这种类型的查询。
vh0rcniy

vh0rcniy1#

set @variable := (select name.* from a)  

set @variable := concat(@variable , ',' , select name.* from b)

相关问题