码迷,mamicode.com
首页 > 其他好文 > 详细

同个字段的值,显示在一个标签中存储过程

时间:2014-10-25 10:33:33      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   on   bs   ef   as   har   nbsp   rom   

原理就是把找到的结果一直添加到一个声明的字段中,然后在查出来

 

declare @output varchar(8000)
select @output=coalesce(@output,‘‘)+ product+‘,‘
from khinfoyxcp
select left(@output,len(@output)-1)


declare @output varchar(8000),@khmc varchar(100)
select @khmc=kd_khmc,@output=coalesce(@output,‘‘)+ product+‘,‘
from khinfo a inner join khinfoyxcp b on a.pid=b.pid
select @khmc as khmc,left(@output,len(@output)-1) as [output] into #b

同个字段的值,显示在一个标签中存储过程

标签:ar   sp   on   bs   ef   as   har   nbsp   rom   

原文地址:http://www.cnblogs.com/chlf/p/4049755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!