table1
refno status
1 A
2 A
6 A
3 A
table2
refno itemcode qty
1 1 5
1 2 0
3 8 0
3 1 0
2 4 3
6 7 0
如果在 [table2] 中找不到 [refno],我需要一个查询,该查询将删除 [table2] 中 qty=0 同时删除 [table1] 中的所有行
鉴于上述示例,查询应保留以下输出:
table1
refno status
1 A
2 A
table2
refno itemcode qty
1 1 5
2 4 3
谢谢