创建视图sql关联产品的三级类别

分类:数据库| 发布:camnprbubuol| 查看:409 | 发表时间:2011/1/24




产品分三级类别,但有的只有二级类别,现在想用一个视图,将所有的产品和类别关联起来,有三级类的就显示,没有三级类的只显示一二级类名称,三级类别处显示为null

 

01  A表
02oneid      onefolder
0350            testa
0453            testa1
05B表
06twoid      oneid        twofolder
0787            50              testb
0888            50              testb1
0989            53              testb2
10C表
11threeid      twoid        threefolder
1212                87              testc
1313                88              testc1
14product表
15id            oneid      twoid        threeid      proname
161              50                87          12                产品1
172              53                89          0                  产品2
18想要如下的结果
19id      proname    onefolder      twofolder      threefolder
201        产品1        testa              testb              testc
212        产品2        testa1            testb2            此处是null
22注意一下product表的数据,因为产品2只能二级类别,没有三级,所以第三级类别值为0



01SQL code
02 
03create table A(oneid int,onefolder varchar(20))
04insert into A select 50 ,’testa’  
05insert into A select 53 ,’testa1’
06 
07create table B(twoid int,oneid int,twofolder varchar(20))
08insert into B select 87 ,50,’testb’  
09insert into B select 88 ,50,’testb1’  
10insert into B select 89 ,53,’testb2’
11 
12create table C(threeid int,twoid int,threefolder varchar(20))
13insert into C select 12 ,87  ,’testc’  
14insert into C select 13 ,88  ,’testc1’
15 
16create table product(id int,oneid int,twoid int,threeid int,proname varchar(20))
17insert into product select 1,50,87,12,’产品1’  
18insert into product select 2,53 ,89 ,0 ,’产品2’
19 
20go
21 
22create view v_test
23as
24    select x.id, x.proname,onefolder,twofolder,threefolder
25    from product x left join A on x.oneid=A.oneid
26        left join B on x.twoid=B.twoid
27        left join C on x.threeid=C.threeid
28go
29 
30select * from v_test
31 
32drop view v_test
33drop table A,B,C,product
34 
35/*
36id          proname              onefolder            twofolder            threefolder         
37----------- -------------------- -------------------- -------------------- --------------------
381           产品1                  testa                testb                testc
392           产品2                  testa1               testb2               NULL
40 
41(所影响的行数为 2 行)
42*/
365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/database/187.html