我有两个表:TAB1 和 TAB2。
TAB1 字段:itemid(p) 和描述
TAB2 字段:itemid(F) 和父项。
TAB2 是 TAB1 的子项,因此我想从 TAB1 中检索所有项目,并从 TAB1 中检索父项等效项描述。
请找到以下查询。
Select
t1.itemid ,
t1.DESC,
t2.parentitems,
t2.DESC
from TAB1 t1 left join TAB2 t2 on t1.itemid = t2.parentitems
where
some conditions...
让我给出一些示例值..
选项卡1:
item Desc
A1 aa
A2 bb
A3 cc
A4 dd
选项卡2:
item parentitems
A1 A1
A1 A2
A4 A2
A4 A2
如何从 TAB1 检索父项等效的 desc ?