Professional Affiliation: Ph.D., Research Scholar, AICTE QIP (POLY) Sponsored Scheme (2019-2023) Electronics & Communication Engineering, National Institute of Technical Teachers Training & Research, Chandigarh, India (Ministry of Education, Government of India)
Mentorship Offered: Manuscript drafting
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 '%biomedical sensor%' OR
(pm.meta_key IN ('professional_affiliation', 'research_area', 'choice_of_mentorship_in_research_cycle')
AND pm.meta_value LIKE '%biomedical sensor%')
)
ORDER BY p.post_date DESC