查询一:
select name,trans from sids s where apt='KAUS';
查询 2:
SELECT id,transition_id from std_sid_leg where data_supplier='E' and airport='KAUS';
name 的值与 id 和 trans 的值相同,带有 transition_id。结果集 1 是结果集 2 的子集。两个表都有共同的列 apt=airport 如果单独查询无法工作,请提供任何脚本。我需要比较这两个查询的输出并打印数据差异。谢谢你。