如何输出我需要的记录
如何输出我需要的记录a_card 有我需要的字段card_no,bill_name ,meter_addr
bx_qy里面有卡号,一级区 ,二级区 ,三级区,四级区,五级区,六级区
其中卡号和card_no 关联
我想输出含字段卡号,bill_name ,meter_addr ,一级区 ,二级区 ,三级区,四级区,五级区,六级区 的表,里面的数据是bx_qy没有的记录
SQLEXEC(con1,"select card_no ,bill_name ,meter_addr ,一级区 ,二级区 ,三级区,四级区,五级区,六级区 from a_card a where not exists (select 1 from bx_qy b where a.card_no = b.卡号)","card02") 这样生成不了记录
SQLEXEC(con1,"select card_no ,bill_name ,meter_addr from a_card a where not exists (select 1 from bx_qy b where a.card_no = b.卡号)","card02")
这样可以生成记录,但后面的一级区 ,二级区 ,三级区,四级区,五级区,六级区我怎么添加到表格上去