這個不是什麼新東西了,網上有很多方法,我也嘗試了其中好的方法,都不盡人意,這是我最後我推薦的方法,共享一下,大家一起討論,當然難如高手法眼,呵呵。我就直接貼**了,有問題就聯絡我。
mysql中要有樹形結構我認為表中應該有如寫字段:
舉例選單表menu:
create table menu
id int not null auto_increment,
pid int,
name varchar(100) not null,
nlevel int,
scort varchar(8000),
primary key (id)
type = innodb;
alter table menu add constraint fk_reference_67 foreign key (pid)
references menu (id) on delete restrict on update restrict
建立儲存過程gennode_menu:
begin
declare level int ;
set level=0 ;
update menu a inner join (select id,level,concat(',',id,',') scort from menu where pid is null) b on a.id=b.id
set a.nlevel=b.level,a.scort=b.scort;
while found_rows()>0 do
set level=level+1;
update menu a inner join (
select id,level,scort from menu
where nlevel=level-1) b on a.pid=b.id
set a.nlevel=b.level,a.scort=concat(b.scort,a.id,',');
end while;
end插入資料:
insert into menu values ('1', null, '選單1', null, null);
insert into menu values ('2', '1', '選單1-1', null, null);
insert into menu values ('3', null, '選單2', null, null);
insert into menu values ('4', '3', '選單2-1', null, null);
insert into menu values ('5', '4', '選單2-1-1', null, null);
執行儲存過程:
call gennode_menu;我們看一看menu表現在是什麼情況了:
很好,就是這個效果
現在可以按你的需求隨便查詢了:
比如:select * from menu a where a.scort not like '%,1,%' order by a.scort
63EasyUI 表單 建立樹形下拉框
樹形下拉框 combotree 是乙個帶有下列樹形結構 tree 的下拉框 combobox 它可以作為乙個表單字段進行使用,可以提交給遠端伺服器。現在需要建立乙個登錄檔單,帶有 name address city 字段。city 欄位是乙個樹形下拉框 combotree 字段,在裡面使用者可以下拉...
mysql表檔案建立 php檔案建立mysql的表
乙個php檔案,裡面內容是建表語句,如下,怎麼操作這個php檔案才能在mysql中建表啊?createtableifnotexists category id.乙個php檔案,裡面內容是建表語句,如下,怎麼操作這個php檔案才能在mysql中建表啊?create table if not exist...
mysql 樹形結構查詢(儲存過程)
就用資料資料庫表位址資料 中國地區 來說吧 用windows 請使用 gbk 可直接執行 去除註解 儲存過程 delimiter drop procedure if exists findlchild iid 遞迴父節點 layer 允許遞迴深度 create procedure findlchil...