I have 2 tables, one is called arlispend and the other spendforecastlink. these two tables are linked together on the fields PRONUM and LINITENUM (same in both tables). in table spendforecastlink i get linitenum for line item 1,2,3,4, and 5. in arlispend i only get linitenum for line items 2,4, and 5. I want to find the missing linitenum from the Arlispend table using the existing ones in the spendforecastlink table.
i used this query
and i got no results. i know that this exists and should have 1 and 3 showing up as having no records that match. can anyone please help...this is very urgent.
David Kuhn
------------------
i used this query
Code:
Select distinct spendforecastlink.fcLIID,spendforecastlink.pronum,spendforecastlink.LINITENUM
from spendforecastlink left join ArLiSpend
on ArLiSpend.PRONUM=spendforecastlink.pronum and ArLiSpend.LINITENUM=spendforecastlink.linitenum
where spendforecastlink.pronum='05AR1974' and ArLiSpend.GMTImportID=135 and ArLiSpend.LINITENUM is null
and i got no results. i know that this exists and should have 1 and 3 showing up as having no records that match. can anyone please help...this is very urgent.
David Kuhn
------------------