無限分級的資料查詢是個頭痛的問題,遞迴查詢類別,再組合成字串,用 in 來解決子類所有產品的問題,但是這個效率太低,低的讓人無法接受,在此,有一個SQL的方法,可讓我們提高效率。
-----提取子類的所有類別ID
create function GetChild (@id int)
returns @t table(id int)
as
begin
insert @t select classid from mproclass where parentid = @id
while @@rowcount > 0
insert @t select a.classid from mproclass as a inner join @t as b
on a.parentid = b.id and a.classid not in(select id from @t)
return
end
-----提取子類以及自己ID的所有類別ID
create function GetChildAndSelf (@id int)
returns @t table(id int)
as
begin
insert @t values (@id)
insert @t select classid from mproclass where parentid = @id
while @@rowcount > 0
insert @t select a.classid from mproclass as a inner join @t as b
on a.parentid = b.id and a.classid not in(select id from @t)
return
end
以上是最佳方案
查詢該類別的產品資料的sql為:
sql = "select * from mProduct as a inner join (select [id] from GetChildAndSelf("+classid+")) as b on a.classid=b.id order by psortid desc,pdate desc";
太爽了!
網上還有其他幾種方法,貼出來大家一起學習學習
一、
declare @table table(id int,upperid int)
insert into @table
select 1, 2
union all select 3, 2
union all select 4, 1
union all select 5, 3
declare @upperid int
set @upperid=2;
with result(id,upperid)
as
(
select id,upperid from @table where upperid=@upperid
union all
select a.id,a.upperid from @table a inner join result b on a.upperid=b.id
)
select*from result
/*
id upperid
----------- -----------
1 2
3 2
5 3
4 1
(4 row(s) affected)
*/
二、
Create table t(id int,upperid int)
insert into t
select 1, 2
union all select 3, 2
union all select 4, 1
union all select 5, 3
select * from t
create function aa(@upperid int)
returns @t table (id int,upperid int,level int)
as
begin
declare @i int
set @i=1
insert into @t
select *,@i from t where upperid=@upperid
while @@rowcount> 0
begin
set @i=@i+1
insert into @t
select a.*,@i from t a left join @t b on a.upperid=b.id
where b.level=@i-1
end
return
end
select * from dbo.aa(1)
id upperid level
----------- ----------- -----------
4 1 1
(所影響的行數為 1 行)
select * from dbo.aa(2)
id upperid level
----------- ----------- -----------
1 2 1
3 2 1
4 1 2
5 3 2
三、
----建立測試資料
if object_id( 'tbTest ') is not null
drop table tbTest
if object_id( 'spGetChildren ') is not null
drop proc spGetChildren
GO
create table tbTest(id int, upperid int)
insert tbTest
select 1, 2 union all
select 3, 2 union all
select 4, 1 union all
select 5, 3
GO
----建立儲存過程
create proc spGetChildren @id int
as
declare @t table(id int)
insert @t select id from tbTest where upperid = @id
while @@rowcount > 0
insert @t select a.id from tbTest as a inner join @t as b
on a.upperid = b.id and a.id not in(select id from @t)
select * from @t
GO
----執行儲存過程
declare @upperid int
set @upperid = 2
EXEC spGetChildren @upperid
----清除測試環境
drop proc spGetChildren
drop table tbTest
/*結果
id
-----------
1
3
4
5
*/
[推薦]無限分級數量查詢優化
相關文章
- 無限級分類---有關查詢問題??
- FreeSql 使用 ToTreeList/AsTreeCte 查詢無限級分類表SQLAST
- 分頁查詢優化優化
- Ztree + PHP 無限級節點遞迴查詢PHP遞迴
- MySQL分頁查詢優化MySql優化
- 二分查詢 | 二分查詢的一種推薦寫法
- MySQL子查詢的優化薦MySql優化
- php無限級分類函式(無極限)PHP函式
- 『軟體推薦』無限暢視
- MySQL——優化巢狀查詢和分頁查詢MySql優化巢狀
- sql無限遞迴查詢SQL遞迴
- 【PostgreSQL】 字首模糊查詢級優化SQL優化
- 無限分級 方法總結
- 無限級結構SQL查詢所有的下級和所有的下級SQL
- MySQL分優化之超大頁查詢MySql優化
- 資料庫全表查詢之-分頁查詢優化資料庫優化
- PHP中的無限級分類、無限巢狀評論PHP巢狀
- 構造無限級樹並深度遍歷查詢指定節點
- Greenplum點查詢的優化(分佈鍵)優化
- 關於分頁查詢的優化思路優化
- 一次分頁查詢的優化優化
- msyql千萬級別查詢優化之索引優化索引
- 查詢優化優化
- PHP 無限級分類最佳實踐PHP
- mysql 無限級分類實現思路MySql
- 不用遞推實現無限極分類
- [冷楓推薦]:資料庫操作,內外聯查詢,分組查詢,巢狀查詢,交叉查詢,多表查詢,語句小結。資料庫巢狀
- 左百分號模糊查詢的優化優化
- pgsql查詢優化之模糊查詢SQL優化
- Oracle in 查詢優化Oracle優化
- MySQL查詢優化MySql優化
- join 查詢優化優化
- HBase查詢優化優化
- 查詢優化器優化
- SQL查詢優化SQL優化
- 體驗Oracle資料庫查詢優化的經驗和方法-wjk推薦版Oracle資料庫優化
- VS Code 輕量級外掛推薦
- mysql大資料量分頁查詢方法及其優化MySql大資料優化