摘要:
--SELECT * from StringSplitWithIndex('黄色,蓝色,黑色',',')CREATE function [dbo].[StringSplitWithIndex]( @str nvarchar(max), --字符串 @spliter nvarchar(10)) --分... 阅读全文
摘要:
create function [dbo].[StringSplit]( @str nvarchar(max), --字符串 @spliter nvarchar(10)) --分割符returns @tb table(Item nvarchar(256)) --返回对应表ASBEGIN DECLA... 阅读全文
摘要:
其实就是拼接sql 拼接出来的select 'INSERT INTO [Gas_CN_Trade_B2C].[dbo].[Common_Street] values ('+convert(varchar(20),ID)+','+StreetName+','''+''''+','+substring(... 阅读全文