i have this MySQL query to retrieve some data just for those who have language = 3
SELECT
noor_content.id,noor_content.body,noor_content.category,noor_content.introtext,noor_content.title,noor_content.keywords,noor_content.language,path
FROM (`noor_content`)
join noor_categories
on (noor_content.category = noor_categories.id)
WHERE `language` = '3'
AND noor_content.keywords LIKE '%سمنگان%'
or noor_content.keywords LIKE '%جوزجان%'
or noor_content.keywords LIKE '%سرپل%'
Problem: the query retrieved those data that have another language but i mentioned language='3'
Screenshot: