当前位置: 代码迷 >> Sql Server >> 請教個組織數據方法解决办法
  详细解决方案

請教個組織數據方法解决办法

热度:14   发布时间:2016-04-27 16:32:57.0
請教個組織數據方法
假如有表Comp
表結構如
                CompID               UserIF
                    A                         B
                    A                         C
                    B                         F
現在要求把CompID中沒有和UserID字段有聯系的組合組織補充回表里,   比如A沒有和F組合.
組織后的數據應
                  CompID             UserID
                      A                       B
                      A                       C
                      A                       F
                      B                       B
                      B                       C
                      B                       F
請教SQL怎么寫?




------解决方案--------------------
select a.CompID,b.UserIF from (select distinct compid from comp) a,(select distinct userif from comp) b order by a.compid
  相关解决方案