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.
我想从数据库中选择一个标题,该标题可以包含任意数量的单词,例如我想选择一个标题:MY ISLAND George Blonde。
并且我希望能够通过搜索单词而不是特定顺序来选择此标题,例如 George Blonde MY 作为搜索。
我知道诸如 LIKE '%%' AND MATCH AGAINST 之类的查询,我想知道是否有人有更好的方法?
谢谢
詹姆士
从 DATABASE_TABLE 中选择 TITLE,其中 TITLE REGEXP '^MY'
:我的意思是您可以使用并深入研究正则表达式来进行此类查询。