我有一个 sql server 2012 数据库表,其中包含如下数据:
id import_id tenancyname owner reason
----- ---------- ------------ ----- ------
1 1 test null Owner is missing
2 2 null null Tenancy Name is Missing
2 2 null null Owner is Missing
从上面的数据可以看出,第 2 行有 2 个原因,因为该行有 2 个问题。
现在我想要做的是只返回该行一次,但将原因连接到 1 个单元格中,因此它将如下所示:
id import_id tenancyname owner reason
----- ---------- ------------ ----- ------
1 1 test null Owner is missing
2 2 null null Tenancy Name is Missing \newline Owner is Missing
请专家帮助将不胜感激