Probably a long shot with this...
I have two databases \"Job Register\" and \"Job001\".
I want to retrieve a list of the jobs that have had a meeting, and the la
SELECT JR.JobNumber, JR.IsComplete, J.DateModified FROM JobRegister JR INNER JOIN CONCAT('Job', JR.JobNumber) J ON JR.JobNumber = J.JobNumber WHERE DocumentRevision = 'B';