我正在嘗試將基於MySQL的應用程序遷移到Microsoft SQL Server 2005(不是按需選擇,但這就是生活)。 數據庫
在原始應用程序中,咱們使用了幾乎徹底符合ANSI-SQL的語句,但有一個明顯的例外-咱們至關頻繁地使用MySQL的group_concat
函數。 安全
group_concat
, group_concat
作到了:給一個表,例如,僱員姓名和項目... 函數
SELECT empName, projID FROM project_members;
返回: 性能
ANDY | A100 ANDY | B391 ANDY | X010 TOM | A100 TOM | A510
……這就是group_concat的功能: 測試
SELECT empName, group_concat(projID SEPARATOR ' / ') FROM project_members GROUP BY empName;
返回: this
ANDY | A100 / B391 / X010 TOM | A100 / A510
所以,我想知道的是:是否能夠在SQL Server中編寫一個模仿group_concat
功能的用戶定義函數? spa
我幾乎沒有使用UDF,存儲過程或相似內容的經驗,只是直接使用SQL,因此請在過多解釋的旁邊犯錯:) code
看看Github上的GROUP_CONCAT項目,我想我正是您要搜索的內容: orm
該項目包含一組SQLCLR用戶定義的聚合函數(SQLCLR UDA),這些函數共同提供與MySQL GROUP_CONCAT函數相似的功能。 有多種功能可確保根據所需功能實現最佳性能。 xml
使用下面的代碼,您必須在部署以前在項目屬性上設置PermissionLevel = External,並經過運行「 ALTER DATABASE database_name SET」來更改數據庫以信任外部代碼(請確保在其餘地方閱讀有關安全風險和替代方法的信息,例如證書)。值得信賴」。
using System; using System.Collections.Generic; using System.Data.SqlTypes; using System.IO; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; using Microsoft.SqlServer.Server; [Serializable] [SqlUserDefinedAggregate(Format.UserDefined, MaxByteSize=8000, IsInvariantToDuplicates=true, IsInvariantToNulls=true, IsInvariantToOrder=true, IsNullIfEmpty=true)] public struct CommaDelimit : IBinarySerialize { [Serializable] private class StringList : List<string> { } private StringList List; public void Init() { this.List = new StringList(); } public void Accumulate(SqlString value) { if (!value.IsNull) this.Add(value.Value); } private void Add(string value) { if (!this.List.Contains(value)) this.List.Add(value); } public void Merge(CommaDelimit group) { foreach (string s in group.List) { this.Add(s); } } void IBinarySerialize.Read(BinaryReader reader) { IFormatter formatter = new BinaryFormatter(); this.List = (StringList)formatter.Deserialize(reader.BaseStream); } public SqlString Terminate() { if (this.List.Count == 0) return SqlString.Null; const string Separator = ", "; this.List.Sort(); return new SqlString(String.Join(Separator, this.List.ToArray())); } void IBinarySerialize.Write(BinaryWriter writer) { IFormatter formatter = new BinaryFormatter(); formatter.Serialize(writer.BaseStream, this.List); } }
我已經使用以下查詢查詢對此進行了測試:
SELECT dbo.CommaDelimit(X.value) [delimited] FROM ( SELECT 'D' [value] UNION ALL SELECT 'B' [value] UNION ALL SELECT 'B' [value] -- intentional duplicate UNION ALL SELECT 'A' [value] UNION ALL SELECT 'C' [value] ) X
併產生:A,B,C,D
可能爲時已晚,如今沒法受益,但這不是最簡單的作事方法嗎?
SELECT empName, projIDs = replace ((SELECT Surname AS [data()] FROM project_members WHERE empName = a.empName ORDER BY empName FOR xml path('')), ' ', REQUIRED SEPERATOR) FROM project_members a WHERE empName IS NOT NULL GROUP BY empName
關於哈迪曼(J Hardiman)的答案,如何:
SELECT empName, projIDs= REPLACE( REPLACE( (SELECT REPLACE(projID, ' ', '-somebody-puts-microsoft-out-of-his-misery-please-') AS [data()] FROM project_members WHERE empName=a.empName FOR XML PATH('')), ' ', ' / '), '-somebody-puts-microsoft-out-of-his-misery-please-', ' ') FROM project_members a WHERE empName IS NOT NULL GROUP BY empName
順便說一句,使用「姓氏」是拼寫錯誤仍是我在這裏不理解這個概念?
不管如何,謝謝你們,由於它節省了我不少時間:)
嘗試了這些,但出於我在MS SQL Server 2005中的目的,如下是最有用的,我在xaprb上找到了
declare @result varchar(8000); set @result = ''; select @result = @result + name + ' ' from master.dbo.systypes; select rtrim(@result);
正如您所提到的,@ Mark對我來講是空格字符。