这是主表查询
Select *
from AC_TAB
where AC_ID = 7 ;
AC_PK AC_ID TYPE STATUS INS_DATE VALID
102 7 0 0 3/21/2012 3:35:08 PM 0
103 7 1 0 3/21/2012 3:35:08 PM
104 7 2 1 3/21/2012 3:35:08 PM
我正在使用 txn 表加入这个表ac_id
。因为这里它有 3 行 ac_id 7 ,所以我的 txn 表返回 3 次。如何限制这一点。因为无论类型如何,我都只想返回一个
我的 Txn 查询
Select txn_id, amount
from txn_hdr , ac_tab
where txn_ac_id = ac_id ;
txn_id amount
1 200
1 200
3 100
3 100