Het antwoord zou zijn "gebruik LIKE".
Zie de documentatie:https://dev.mysql .com/doc/refman/5.0/en/string-comparison-functions.html
U kunt WHERE 'string' LIKE CONCAT(column , '%')
doen
Zo wordt de vraag:
select * from t1 where 'ABCDEFG' LIKE CONCAT(column1,'%');
Als je ergens in de string moet matchen:
select * from t1 where 'ABCDEFG' LIKE CONCAT('%',column1,'%');
Hier kun je zien hoe het werkt:http://sqlfiddle.com/#!9 /d1596/4