文章分类 -  SQL2000

全是来自各方的猛料。。。。
摘要:一: BOM展开(按任一父结点展开到最底层)以下写一个简单的,视具体要求稍做修改即可。create table 表(levelid int,levelname char(2),parent int)insert 表 select 1, 'AA' , 0union all select 2 , 'BB' , 1union all select... 阅读全文
posted @ 2004-08-11 10:48 泡面 @ 幸福 阅读(471) 评论(0) 推荐(0)