0

嗨,我有 3 张桌子,我正试图加入他们以获得一张欲望桌子。我尝试了 group by 和 temp tables 选项来获得所需的表,但没有帮助。我想避免另一个表中一个表中值的每个实例重复。

表 1 客户表:

CstId          CstDetails       CstType    
----------  ---------------  ------------
    1           address 1         1
    2           address 2         1
    3           address 3         1
    4           address 4         2
    5           address 5         2

表 2 客户关系:

CstId            CstGroupId
----------   ----------------
    1               4 (this is same as CustomerId)
    2               5 (this is same as CustomerId)
    3               4 (this is same as CustomerId)

表 3 客户备注:

CstId          NotesId     NoteTxt
-----------   ---------    ---------
    1            1           note11
    1            2           note12
    1            3           note13
    3            1           note31
    4            1           note41
    4            2           note42
    4            3           note43
    4            4           note44
    4            5           note45

现在我希望结果采用以下格式

Table result:
                                    (NoteId)  (Notetxt)    (NoteId)         (Notetxt)
    CstId  CstDetails  CstGroupId  CstNoteId   CstNote   CstGroupNoteId   CstGroupNote
      1    address1       4         1          note11        1              note41
      1    address1       4         2          note12        2              note42
      1    address1       4         3          note13        3              note43
      1    address1       4         null       null          4              note44
      1    address1       4         null       null          5              note45

但是我正在为所有 CstNote 重复 CstGroupNote,这是我试图避免的。

有没有办法我可以达到这个结果?

以下是我使用的代码:

select c.cstid, c.cstdetails, cn.cstnotesid, cn.cstnotetxt
insert into temp1
from customer c
    left outer join customernotes cn
        on c.cstid = cn.cstid
where c.customertypeid = 1

select cr.cstid, cr.cstgroupid, cn.cstgroupnoteid, cn.cstnotetxt
insert into temp2
from customerrelationship cr
    left outer join customernotes cn
        on cr.cstgroupid = cn.customerid

select t1.cstid, t1.cstdetails, t1.cstnotesid, t1.cstnotetxt, t2.cstgroupnoteid, t2.cstnotetext
from temp1 t1
    left outer join t2
        on t1.cstid = t2.cstid
4

2 回答 2

0

尝试:

select CstId, 
       max(CstDetails) CstDetails, 
       max(CstGroupId) CstGroupId, 
       max(CstNoteId) CstNoteId, 
       max(CstNote) CstNote, 
       max(CstGroupNoteId) CstGroupNoteId, 
       max(CstGroupNote) CstGroupNote
from
(select c.CstId, 
        c.CstDetails,
        0 CstGroupId,
        n.NotesId CmbNotesId,
        n.NotesId CstNoteId,
        n.NoteTxt CstNote,
        0 CstGroupNoteId,
        '' CstGroupNote
 from customer c
 left outer join customernotes n on c.cstid = n.cstid
 where c.customertypeid = 1
 union all
 select c.CstId,
        c.CstDetails,
        r.CstGroupId,
        n.NotesId CmbNotesId,
        0 CstNoteId,
        '' CstNote,
        n.NotesId CstGroupNoteId,
        n.NoteTxt CstGroupNote
 from customer c
 left outer join customerrelationship r on c.cstid = r.cstid
 left outer join customernotes n on r.CstGroupId = n.cstid
 where c.customertypeid = 1) u
group by CstId, CmbNotesId
于 2013-02-20T16:55:29.610 回答
0

使用派生表和外连接
诀窍是
和 cn.cstnotesid = cG.cstnotesid
将这两个链接到一行

select c.cstid, c.cstdetails, cn.cstnotesid, cn.cstnotetxt
      ,cG.CstGroupId, cG.cstnotesid, cG.cstnotetxt
from customer c
join customernotes cn
  on cn.cstid = c.cstid 
outer join  (select c.cstid, c.CstGroupId, cn.cstnotesid, cn.cstnotetxt
                from customer c
                join customernotes cn
                on cn.cstid = c.CstGroupId) as cG
        on c.cstid = cG.cstid
       and cn.cstnotesid = cG.cstnotesid
order by c.cstid, cn.cstnotesid, cG.cstnotesid
于 2013-02-20T19:29:57.183 回答