BBK
Registered User.
- Local time
- Today, 12:59
- Joined
- Jul 19, 2010
- Messages
- 71
I have two tables as shown below
Im trying to create a join between the two tables to use in a form
I have tried a lot of code but cant seem to get it to work
My latest attempt been:
( no laughing please
)
Am i anywhere near the correct syntax for this join or am i as far out as a lighthouse.
Once again any help provided to lead me in the right direction would be greatly appreciated. Thank you
Im trying to create a join between the two tables to use in a form
I have tried a lot of code but cant seem to get it to work
My latest attempt been:
Code:
SELECT [Payment].[PaymentID], [Payment].[LeaseID], [Payment].[DateDue], [Payment].[DatePaid], [Payment].[PaymentTypeID], [Payment].[Amount], [Payment].[PaymentCategoryID], Payment.Notes FROM Payment INNER JOIN (Tenant ON Tenant.TenantID=Payment.TenantID)
( no laughing please
Am i anywhere near the correct syntax for this join or am i as far out as a lighthouse.
Once again any help provided to lead me in the right direction would be greatly appreciated. Thank you