I have following data in table:
+----------------------+----------------------------------------------------------+--------------+ | subscriber_fields_id | n
Try using SIMILAR TO like below:
SIMILAR TO
SELECT * FROM subscriberfields WHERE name SIMILAR TO '%(Khairpur|Islamabad|Karachi)%';
Also you should read up on database normalization. Your design could and should definitely be improved.