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:
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.
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.