📜  MySQL - 如何查找开头最相似的单词 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:51.806000             🧑  作者: Mango

代码示例1
select * from words where 'StackExch_bla_bla_bla' LIKE CONCAT(words.word_column,'%')
order by length( trim( words.word_column )) DESC limit 1