/*--表结构描述及数据环境:表名tb,如果修改表名,则相应修改所有数据处理中涉及到的表名tbid为编号(标识字段+主键),pid为上级编号,name为名称,后面可以自行增加其他字段.凡是未特殊标注的地方,对自行增加的字段不影响处理结果--邹建2003.12(引用请保留此信息)--*/--测试数据create table tb(id int identity(1,1) not null constraint PK_tb primary key clustered,pid int,name varchar(20))insert tb select 0,'中国'union all Read More
posted @ 2007-03-19 15:24 attitudedecidesall Views(369) Comments(0) Diggs(0) Edit
表结构是这样的部门 上级部门 A BB CC DA AB BC C求一条SQL语句,根据A查其上级部门,查询结果为上级部门BCD=================================================用函数create table tb (部门 varchar(20),上级部门 varchar(20))insert into tb select 'A','B' union all select 'B','C' union all select 'C','D' union a Read More
posted @ 2007-03-19 15:23 attitudedecidesall Views(226) Comments(0) Diggs(0) Edit