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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Join table to show records without match 1

Status
Not open for further replies.

apex82

Programmer
Mar 2, 2009
127
GB
I have the following tables:

System:

System_ID | System Code | System Description | BusinessID |

Business:

Business_ID | Business Code | Business Description | ModuleID

The join here would be between the System.BusinessID and the Business.Business_ID.

On my page I initially had a dropdown menu where I was selecting all from the Business table:

Code:
str_SQL = "SELECT * FROM [Business] ORDER BY [Business Code] ASC;"

Basically I want to change this SQL statement so I show the records in the Business table that don’t have a match on the BusinessID in the System table.

Does anyone know how I would change my SQL statement to do this?

Thanks.

 
Code:
SELECT Business.* 
  FROM Business 
LEFT OUTER
  JOIN System
    ON System.BusinessID = Business.BusinessID  
 WHERE System.BusinessID IS NULL
ORDER 
    BY Business.[Business Code] ASC

r937.com | rudy.ca
Buy my new book Simply SQL from Amazon
 
Select [columns]
From Business b
Left Join System s ON b.BusinessID = s.BusinessID
Where b.BusinessID IS NULL
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top