BBK
Registered User.
- Local time
- Today, 18:29
- Joined
- Jul 19, 2010
- Messages
- 71
Im trying to get a query working that will selected all properties that have no lease(vacant)
I have tried countless ways but am unable to get it to return the correct results.
Is it even possible from my two tables show below.
Once again any assistance is greatly appreciated.
SELECT tblProperty.Address, tblProperty.Town, tblProperty.County
FROM tblProperty INNER JOIN tblLease ON tblProperty.PropertyID = tblLease.PropertyID;
I have tried countless ways but am unable to get it to return the correct results.
Is it even possible from my two tables show below.
Once again any assistance is greatly appreciated.
SELECT tblProperty.Address, tblProperty.Town, tblProperty.County
FROM tblProperty INNER JOIN tblLease ON tblProperty.PropertyID = tblLease.PropertyID;