Professional Affiliation: Professor of the College of Railway Transport in Belgrade and of the European University Brčko District, Brcko, Bosnia and Herzegovina , the departments of electrical engineering,
Mentorship Offered: Problem formulation
SELECT DISTINCT p.ID
FROM wp_posts p
LEFT JOIN wp_postmeta pm ON p.ID = pm.post_id
WHERE p.post_type = 'research_mentor_cpt' AND
p.post_status = 'publish'
AND (
p.post_title LIKE '%electric traction railway system (railway vehicles and stable electric traction installations)%' OR
(pm.meta_key IN ('professional_affiliation', 'research_area', 'choice_of_mentorship_in_research_cycle')
AND pm.meta_value LIKE '%electric traction railway system (railway vehicles and stable electric traction installations)%')
)
ORDER BY p.post_date DESC