日期:2014-05-17 浏览次数:20823 次
--drop table t
create table t
(
id int primary key,
pid int foreign key references t(id), --上级id
name varchar(100),
calc_method varchar(100)
)
insert into t
select 1,null,'工作量' ,null union all
select 2,1 ,'理论' ,null union all
select 3,2 ,'理论课程','基础工作量100' union all
select 4,2 ,'实验课程','基础工作量100' union all
select 5,1 ,'实践' ,null union all
select 6,5 ,'课程设计','基础工作量100' union all
select 7,1 ,'其它' ,null union all
select 8,7 ,'论文' ,'4分/次' union all
select 9,8 ,'社会实践','3分/次'
select t1.name,t2.name,t3.name,t3.calc_method
from t t1
inner join t t2
on t1.id = t2.pid
inner join t t3
on t2.id = t3.pid
where t1.pid is null
/*
name name name calc_method
工作量 理论 理论课程 基础工作量100
工作量 理论 实验课程 基础工作量100
工作量 实践 课程设计 基础工作量100
工作量 其它 论文 4分/次
*/