select
    c.staff_id as staff_id,
    s.staff_name as staff_name
from
    cultivate_tb c,staff_tb s
where 
    c.staff_id = s.staff_id
    and c.course like '%course3%'