首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

关于建表的有关问题

2013-11-05 
关于建表的问题一对多的关系(这一项由几个子项组合而成 子项又由几个子项...)应该如何建表易于扩展和操作?

关于建表的问题
一对多的关系(这一项由几个子项组合而成 子项又由几个子项...)应该如何建表易于扩展和操作? sqlsever 建表
[解决办法]
这样呢,试试:



--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     
/*
namenamenamecalc_method
工作量理论    理论课程基础工作量100
工作量理论    实验课程基础工作量100
工作量实践   课程设计基础工作量100
工作量其它  论文    4分/次
*/   

热点排行