sql server 怎样将字符串拼接的方法
1个回答
展开全部
你的问题,问的不是很清楚,你是想问,如果将查询结果拼接为字符串吗?
有两种办法,如果是拼接为一个字符串,可以用变量,如:
declare @names varchar(max)
select @names=isnull(@names+',','')+t.name from sys.tables as t
select @names
--返回:spt_fallback_db,spt_fallback_dev,spt_fallback_usg,spt_monitor,msreplication_options如果是用sql中,可以用xml
path如:
select stuff(
(select ','+t.name from sys.tables as t for xml path(''))
,1,1,'')
--返回spt_fallback_db,spt_fallback_dev,spt_fallback_usg,spt_monitor,msreplication_options
有两种办法,如果是拼接为一个字符串,可以用变量,如:
declare @names varchar(max)
select @names=isnull(@names+',','')+t.name from sys.tables as t
select @names
--返回:spt_fallback_db,spt_fallback_dev,spt_fallback_usg,spt_monitor,msreplication_options如果是用sql中,可以用xml
path如:
select stuff(
(select ','+t.name from sys.tables as t for xml path(''))
,1,1,'')
--返回spt_fallback_db,spt_fallback_dev,spt_fallback_usg,spt_monitor,msreplication_options
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询