SELECT DISTINCT a.userID, buildstatus
FROM meeting a
WHERE buildStatus = 'complete'
INNER JOIN user.contactName ON (a.userID = b.userID)
Ok so I’m trying to join these two tables where buildstatus from the meeting table is found to be complete it will then find the user id from the user table and join the contact name to this query.
Unfortunately, whatever I try seems to throw up an error message.
Any ideas how to solve this issue?
The order of the query clauses have to be correct. switch
joinandwhere