假如有表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