摘要: IF OBJECT_ID('dbo.Split') IS NOT NULL DROP FUNCTION dbo.Split;GOcreate FUNCTION dbo.Split(@pattern as char, @content AS nvarchar(max)) RETURNS @tb TABLE(id int identity(1,1) ,value nvarchar(max))ASbeg... 阅读全文
posted @ 2010-08-12 13:45 netfuns 阅读(167) 评论(0) 推荐(0)