sql數組查詢
❶ 在sql中如何從數組中獲取值再進行查詢
----首先定義一個split函數,其作用是將字元串拆分成表
CREATEFUNCTION[fn_split]
(@SourceSqlvarchar(8000),@StrSepratevarchar(10))
RETURNS@temptable
(
[n]intNULL,
[a]varchar(100)NULL
)
AS
BEGIN
declare@iint,@nint;
set@n=0;
set@SourceSql=rtrim(ltrim(@SourceSql));
set@i=charindex(@StrSeprate,@SourceSql);
while(@i>=1)
begin
set@n=@n+1;
insert@temp([n],[a])values(@n,left(@SourceSql,@i-1));
set@SourceSql=substring(@SourceSql,@i+1,len(@SourceSql)-@i);
set@i=charindex(@StrSeprate,@SourceSql);
end
if(@SourceSql<>'')
begin
set@n=@n+1;
insert@temp([n],[a])values(@n,@SourceSql);
end
return
END
GO
--接下來利用這個函數將數組轉化成表,查出A的對應值
declare@Cvarchar(100),@Dvarchar(100);
set@C='a1,a2,a3,a4,a5,a6';
set@D='b1,b2,b3,b4,b5,b6';
declare@Avarchar(10),@Bvarchar(10);
set@A='a4';
select@B=t2.afromfn_split(@C,',')t1,fn_split(@D,',')t2wheret1.n=t2.nandt1.a=@A;
select@B;
--這里將得到@B=b4
--接下來就可以使用@B了
select TOP 7 * from Data_Content where title = @B order BY ID DESC
❷ sql查詢數組中的條件查詢
將數組分隔, and or 查詢
這個是我之前寫的一個數組查詢的,你可以看下
$where="";
$jd_name=$_POST['jdname'];
if($jd_name){
$where=$where." and (title like '%".$jd_name."%')";
}
$jgqj=$_POST['jgqj'];
if($jgqj){
$str = $jgqj;
$arr = explode(",",$str);
$len=count($arr);
if($len=="1"){
foreach($arr as $u){
$strarr = explode("_",$u);
$tj=" price between ".$strarr[0]." and ".$strarr[1]." ";
}
}else{
foreach($arr as $u){
$strarr = explode("_",$u);
$tj=$tj." price between ".$strarr[0]." and ".$strarr[1]." or ";
}
}
$ntj=rtrim($tj, "or ");
$where=$where." and (".$ntj.")";
}
$pj=$_POST['pj'];
if($pj){
$str1=$pj;
$arr1=explode(",",$str1);
foreach ($arr1 as $k){
$xj=$xj." xingji=".$k." or ";
}
$nxj=rtrim($xj, "or ");
$where=$where." and (".$nxj.")";
}
$jdtype=$_POST['jdtype'];
if($jdtype){
$str2=$jdtype;
$arr2=explode(",",$str2);
foreach ($arr2 as $ke){
$type=$type." jdtype='".$ke."' or ";
}
$ntype=rtrim($type, "or ");
$where=$where." and (".$ntype.")";
}
$ss=$_POST['ss'];
if($ss){
$str3=$ss;
$arr3=explode(",",$str3);
foreach ($arr3 as $key){
$sheshi=$sheshi." sheshi like '%".$key."%' or ";
}
$nsheshi=rtrim($sheshi, "or ");
$where=$where." and (".$nsheshi.")";
}
$pf=$_POST['pf'];
if($pf){
$where=$where.$pf;
}
$zian=$_POST['zian'];
if($zian){
if($zian=="jg"){
$order=" order by price";
}elseif($zian=="xj"){
$order=" order by xingji";
}elseif($zian=="dp"){
$order=" order by id";
}
}
$shunxu=$_POST['shunxu'];
if($shunxu){
if($shunxu=="1"){
$order=$order." asc";
}else{
$order=$order." desc";
}
}
$Text="";
$sql1=$empire->query("select classid from {$dbtbpre}enewsclass where classname='$city'");
❸ SQL查詢中IN語句條件為一個數組如何進行查詢(ASP提示類型不匹配)
用 SQL語句嵌套的方式就好了。SELECT * FROM person WHERE id IN (SELECT perid FROM fav WHEREsaver="com1")
❹ SQL模糊查詢數組問題
假設 tab1中 有 id 及 tags 欄位
創建一個臨時表,temptab 欄位 有 originalID , context
寫一個函數 ,
StringToTable
按照 「|」分割
把 tab1 表中所有的記錄 分拆掉 例如把欄位內容「A|B|C 」分拆成3條記錄
分別是 id,A;id,B;id,C
id 欄位內容為原「A|B|C 」的id
保存在temptab 中 其中 originalID 欄位 為id; context 內容為A .....
select distinct originalID from temptab where context = 'A' or
context = 'C ' or context = 'F' 就能把 tab1 中的所符合記錄的ID 全找出來了
================================================
我是菜鳥 沒理解1樓寫的意思,能解釋一下嗎?
❺ 如何在SQL查詢語句中查詢部分數組匹配
select * from a where charindex(『2』,id)>0 or charindex(『33』,id)>0 or charindex(『11』,id)>0
or charindex(『14』,id)>0 or charindex(『15』,id)>0 or charindex(『22』,id)>0
這樣子。應該是沒問題的
❻ sql語句查詢匹配數組怎麼寫
偽代碼
str = "1|2|3|4"
str = str.Replace("|", ",");
string sql = "select * FROM T where [abc] in (" + str + ")";
就是select * from t where abc in (1,2,3,4)
❼ 在sql中如何按數組來查詢,比如我在表中查詢含有「a"的有三個,如何根據這三個「a」查詢其它的
不太明白你的意思,你是不是這樣的,
比如在學生表中根據某個條件查詢出3個學生的學號(001,002,003),,現在你想使用這3個學號作為條件繼續查詢別的結果?
比如在另外的成績表中,需要查看上面3個學生的成績?
那麼:select *from 成績表名稱 where SID in(
select *from 學生表名 where ......你的條件
)
in 表示集合,=表示一條記錄的匹配
❽ 如何數組欄位裡面進行查詢,sql語句該怎麼樣寫
數組形式? 難道是 欄位 a "1,2,3,4,5,6,7,8,9,10,13" 如果是這樣 select * from table where ','+a like '%,7,%'