博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql 中实现某个表中某字段拼接到一起
阅读量:4980 次
发布时间:2019-06-12

本文共 358 字,大约阅读时间需要 1 分钟。

create Function [dbo].[GetJoinChar](@cghth varchar(50))

Returns varchar(5000)
As
Begin
Declare @s_sgdh varchar(5000)
Set @s_sgdh = ''
Select @s_sgdh = @s_sgdh + [拼接字段] + ','
from 表1 qd,表2 zy
where qd.cghtzyid=zy.cghtzyid and zy.关联字段= @cghth
Set @s_sgdh = Left(@s_sgdh, len(@s_sgdh) -1 )
Return(@s_sgdh)
End

转载于:https://www.cnblogs.com/fish-ycq/p/6433542.html

你可能感兴趣的文章
hdu1502 , Regular Words, dp,高精度加法
查看>>
SpringBoot在idea中的热部署配置
查看>>
MyEclipse连接SQL Server 2008数据库的操作方法
查看>>
JS验证图片格式和大小并预览
查看>>
laravel5.2 移植到新服务器上除了“/”路由 ,其它路由对应的页面显示报404错误(Object not found!)———新装的LAMP没有加载Rewrite模块...
查看>>
编写高质量代码--改善python程序的建议(六)
查看>>
windows xp 中的administrator帐户不在用户登录内怎么解决?
查看>>
接口和抽象类有什么区别
查看>>
Codeforces Round #206 (Div. 2)
查看>>
**p
查看>>
优先队列详解
查看>>
VS2012 创建项目失败,,提示为找到约束。。。。
查看>>
设计类图
查看>>
类对象
查看>>
[Voice communications] 声音的滤波
查看>>
软件建模——第9章 毕业论文管理系统—面向对象方法
查看>>
[SDOI2008]洞穴勘测
查看>>
Difference between Linearizability and Serializability
查看>>
IDEA使用操作文档
查看>>
UIView
查看>>