仔細(xì)研究后在csdn上找到了解決該問(wèn)題的辦法帖出來(lái)給大家共享一下
成都創(chuàng)新互聯(lián)主營(yíng)永州網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app開(kāi)發(fā)定制,永州h5微信小程序搭建,永州網(wǎng)站營(yíng)銷推廣歡迎永州等地區(qū)企業(yè)咨詢
大致方法是利用傳遞長(zhǎng)字符串的形式向存儲(chǔ)過(guò)程傳遞一個(gè)長(zhǎng)字符串。由于sqlserver沒(méi)有 splite函數(shù)
所以必須自己定義一個(gè)splite函數(shù)來(lái)進(jìn)行處理
自定義一個(gè)函數(shù)
create function f_splitstr(@SourceSql varchar(8000),@StrSeprate varchar(10))
returns @temp table(F1 varchar(100))asbegindeclare @i int
set @SourceSql=rtrim(ltrim(@SourceSql))
set @i=charindex(@StrSeprate,@SourceSql)while @i=1begininsert @temp values(left(@SourceSql,@i-1))
set @SourceSql=substring(@SourceSql,@i+1,len(@SourceSql)-@i)
set @i=charindex(@StrSeprate,@SourceSql)endif @SourceSql''
insert @temp values(@SourceSql)returnend-執(zhí)行select * from dbo.f_splitstr('1,2,3,4',',')
注:'1,2,3,4'即你所傳遞的字符串
同樣你可以通過(guò) select cunt(*) from dbo.f_splitstr('1,2,3,4',',')
獲得該字符串?dāng)?shù)組的長(zhǎng)度
如果要?jiǎng)h除該函數(shù)使用--刪除函數(shù)drop function fsplit
確切的說(shuō)不行-SQL SERVER沒(méi)有數(shù)組類型,ANSI SQL 92標(biāo)準(zhǔn)也不支持?jǐn)?shù)組。但可用其它的方法來(lái)實(shí)現(xiàn)。 1. You could simulate an array by passing one or more varchar(255) fields with comma-separated values and then use a WHILE loop with PATINDEX and SUBSTR to extract the values. 1、你可以使用幾個(gè)VARCHAR(255)字段來(lái)模擬數(shù)組,字段中用逗號(hào)分開(kāi)各個(gè)數(shù)據(jù),然后使用循環(huán)和PATINDEX和SUBSTR分開(kāi)這些數(shù)據(jù)。 2. The more usual way to do this would be to populate a temporary table with the values you need and then use the contents of that table from within the stored-procedure. Example of this below2、通常這種方法需要為這些數(shù)據(jù)創(chuàng)建一個(gè)臨時(shí)表,然后在存儲(chǔ)過(guò)程使用表中的內(nèi)容。如下例create procedure mytest @MyParmTempTable varchar(30)asbegin-- @MyParmTempTable contains my parameter list... 這個(gè)變量是包含參數(shù)的表名-- For simplicity use dynamic sql to copy into a normal temp table... create table #MyInternalList ( list_item varchar( 2 ) not null)set nocount oninsert #MyInternalList select * from sysobjects create table #MyList ( list_item varchar( 2 ) not null)insert #MyList values ( 'S' ) insert #MyList values ( 'U' ) insert #MyList values ( 'P' )exec mytest "#MyList"3. If all you wanted to do was use the array/list as input to an IN clause in a WHERE statement you could use :-3、如果你想在IN子句里使用輸入的數(shù)組參數(shù)可以這樣做:CREATE PROCEDURE sp_MyProcedure (@MyCommaDelimitedString
存儲(chǔ)過(guò)程里定義不了數(shù)組。如果是sqlserver,那么你可以用表變量,游標(biāo)來(lái)實(shí)現(xiàn)你的功能。
如果是sqlserver2005以上的版本,可以做clr存儲(chǔ)過(guò)程,那里面是可以用數(shù)組的。
如果是一維數(shù)組:$nams=implode(',',
ArrarLIst);
select
*
from
table1
where
name
in
($names);
//注意字符查詢需要前后帶引號(hào),數(shù)字不用
如果是多維數(shù)組:得遍歷ArrarLIst數(shù)組,取出相應(yīng)的name再串聯(lián)起來(lái)