SELECT
	staff_id,
    staff_name
FROM staff_tb st
JOIN cultivate_tb ct USING (staff_id)
WHERE ct.course LIKE "%course3%"