繁体   English   中英

如何使用 TSQL 用逗号“,”连接来自两个不同列的两个不同值?

[英]How to concatenate two different values from two different columns with comma " , " using TSQL?

我想知道如何使用 TSQL 连接 SQL 表中两个不同列的两个不同值?

在此处输入图像描述

如您所见,我想将这两个不同的列 X e Y 连接起来,从而得到以下列表:

在此处输入图像描述

这里应该使用哪个查询?

如果数据类型是数字类型(int、bigint、tinyint、smallint 等),那么您需要在连接之前将其转换为字符串。 如果数据类型是 string(varchar,char,nvarchar,nchar) 那么你可以直接使用concat function

select concat(cast(column_1 as varchar) ,cast(column_2 as varchar))

select concat(column_1,column_2)

另一种解决方法,如果列是字符串数据类型,则

select column_1+column_2

样本

with cte as (select 1 as id, 'name' as Field1, 'job' as Field2, '1test1' as Field1value , '2test1' as Field2value 
union select 2 as id, 'name' as Field1, 'job' as Field2, '1test1' as Field1value , '2test2' as Field2value 
union select 2 as id, 'age' as Field1, 'town' as Field2, '13' as Field1value , 'town1' as Field2value )
select 'select percentage from table2 where '+Field1+' ='+ ''''+Field1value+ ''''+' and '+Field2+' = '+  ''''+Field2value+ '''' from cte

结果

在此处输入图像描述

注意:任何一列中的 null 值的结果将是 null

您可以简单地使用+来连接字符。

询问

select *, x + ',' + y as z
from your_table_name;

如果任何列中有 null 值,则连接结果为null值。

处理任意列中的null

询问

select *,
case 
  when x is null and y is not null then y
  when y is null and x is not null then x
  when x is null and y is null then null
  else x + ',' + y end as z
from your_table_name;

您可以使用concat作为

SELECT 
    Source, QtyPrevious, QtyToday, ProductPrevious, ProductToday, 
    AvaDatePr, AvaDateToday, Clusters, CONCAT(X, '', Y) as Z 
from your_table_name;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM