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
Your question is unclear a bit, but I think you are looking for
SELECT JR.JobNumber,
JR.IsComplete,
J.DateModified
FROM JobRegister JR INNER JOIN Job001 J
ON JR.JobNumber = J.JobNumber
WHERE DocumentRevision = 'B';
Also JobNumber
in both tables should be the same datatype.
Demo
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';