1 SET QUOTED_IDENTIFIER ON 2 SET ANSI_NULLS ON 3 GO 4 --功能:分拆字符串 5 --参数:@String:要分拆的字符串;@Delimiter:分割符号 6 --返回值:@ValueTable结果表 7 create FUNCTION dbo.fn_Split( 8 @String nvarchar (4000), ... Read More
posted @ 2018-04-16 14:41 恝置 Views(580) Comments(0) Diggs(0) Edit