SELECT t1.staff_id,
       t1.staff_name
FROM staff_tb t1
LEFT JOIN cultivate_tb t2 ON t1.staff_id=t2.staff_id
WHERE t2.course LIKE '%course3%'