Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 sqlite 中连续获得每个单词的匹配首字母的结果。
例如我有如下数据:
那个幸运的老太阳 今天我的生活开始
当我输入 时tl,我想要That Lucky Old Sun作为唯一的结果。我已经完成了这个命令:
tl
That Lucky Old Sun
select * from table_name where column_name LIKE 't% l%'
但是这两个数据都是结果。
任何人都可以建议我如何完成此查询?谢谢!
你可以尝试使用这个
select * from table_name where column_name LIKE 't% l%' AND NOT LIKE 't% % l%'