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

[ad_1]

You can use concat as

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

[ad_2]

solved How to concatenate two different values from two different columns with comma ” , ” using TSQL?