2 つの一時テーブルを作成しましたが、結合に問題があります。
表1
Create Table #First_Pay(
SAID int,
First_Payment date)
select b.CUSTNMBR, min(b.docdate) as first_payment
from RM20101 b
where b.CUSTNMBR = '1973204005'
and b.CHEKNMBR > '1'
Group by b.CUSTNMBR
テーブル#2
Create Table #First_Bil(
SAID int,
First_Bill date)
Select a.CUSTNMBR, MIN(a.Tax_Date) as First_Bill
from SOP30200 as a
where a.CUSTNMBR = '1973204005'
Group by a.CUSTNMBR
そして、私はこのクエリを使用しました:
Select a.SAID, a.First_Bill, b.First_Payment
From #First_Bil a
Full Join
#First_Pay b
On a.SAID = b.SAID;
drop table #First_Bil
drop table #First_Pay
しかし、私は空白を取得しています。私は何を間違っていますか?