level 4
怎样根据数据库动态建立treeview,要程序自动判断生成节点,在不知道数据库内容的情况下
2016年11月30日 12点11分
1
level 4
with ctetable_dir as
(
select * from st_Dir where id=3
union all
select a.* from st_Dir a join ctetable_dir b on a.dir_upper=b.id
)这个怎么用的,算是上头给我的提示吧,然而sql没学好。。。
2016年12月01日 02点12分
4