select t1.staff_id,staff_name
from staff_tb t1 join cultivate_tb t2 on t1.staff_id=t2.staff_id
where course like "%course3%"
order by t1.staff_id;