摘要: -- 递归 -- 创建测试表 create table tb_Test( id int not null ,pId int not null ,content varchar(200) ) go -- 测试数据 insert tb_Test (id,pId,content) values (1,0,'测试1') ,(2,0,'测试2') ,(3,0,'测试3') ,(4,1,'测试1-1'... 阅读全文
posted @ 2017-12-26 14:19 黄伟伟(huangweiwei) 阅读(238) 评论(0) 推荐(0)