इसका उत्तर होगा "LIKE का उपयोग करें"।
दस्तावेज़ देखें:https://dev.mysql .com/doc/refman/5.0/hi/string-comparison-functions.html
आप WHERE 'string' LIKE CONCAT(column , '%')
कर सकते हैं
इस प्रकार क्वेरी बन जाती है:
select * from t1 where 'ABCDEFG' LIKE CONCAT(column1,'%');
यदि आपको स्ट्रिंग में कहीं भी मिलान करने की आवश्यकता है:
select * from t1 where 'ABCDEFG' LIKE CONCAT('%',column1,'%');
यहाँ आप इसे एक पहेली में काम करते हुए देख सकते हैं:http://sqlfiddle.com/#!9 /d1596/4