如果是9i以上版本,可以使用CONNECT BY 子句:SELECT ID,article,Content,Date,PID
FROM article 
CONNECT BY PRIOR ID=PID
START WITH ID=1;
--ID=1,表示从ID=1的开始查询