我在一個表4列稱爲RelationRecord如何在我的情況下使用SQL Server連接字符串?
RelationRecord
Parent Child1 Child2 Child3
------------------------------------
111 111 null 111
222 null null null
null 333 null null
null null null 444
555 555 555 555
我想通過逗號像下面
期待輸出
111,111
222
333
444
555,555,555,555
做連擊和獨立
我嘗試使用case
和isnull
但它不起作用。當我使用case時,查詢會變得很多。有其他解決方案嗎?
'1,1'是什麼? –
@mohamedfaiz。 。 。參數'stuff()'。 –
它的工作。請給我'coalesce'的定義也請.. 8分鐘後我會接受答案。謝謝 –