Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link Table

Status
Not open for further replies.

rekhatr10

Programmer
Apr 2, 2004
67
US
Hi everyone

cr 7.0
sql 2000

Order(t1) Billed(t2)
orderdate XacDate
Account account
cpt cpt
osdesc procdesc
prov prov
rdoc rdoc
status
dept
I am doing a left outer join on orderdate and account number. I just want to display the records which does not have a matching records in billed(t2) table. Just want to display unbilled records. Any suggestions will be helpful.

Thank you

Rekha
 
If order is joined to Billed with a left outer join on Order.Account = Billed.Account,
all you should need to do is say
where isNull(Billed.account)
in the selection criteria
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top