Professional Affiliation: | * Associate Researcher / ** Founder and current Coordinator | * CSCBAS [Center of Studies and Research for Agro-silvical Biodiversity] “Acad.David Davidescu”/NERI / the /Romanian Academy, Bucharest, Romania | ** ‘Interdisciplinary Entities Laboratory', 2000, Sibiu-Gandia - Romania-Spain
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 '%Inter/Trans/Co-Disciplinary Research and Societal Applications%' OR
(pm.meta_key IN ('professional_affiliation', 'research_area', 'choice_of_mentorship_in_research_cycle')
AND pm.meta_value LIKE '%Inter/Trans/Co-Disciplinary Research and Societal Applications%')
)
ORDER BY p.post_date DESC