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.
如何使用子字符串而不是完整字符串在 mysql 中执行搜索?
我想从搜索词中返回信息,例如。'Wat' 将返回滑铁卢和任何其他带有 Wat 的单词..
你可以这样做:
SELECT * FROM YOUR_TABLE WHERE YOURCOLUMN LIKE '%Wat%';
如果你只是在寻找以 Wat 开头的东西,你可以放弃第一个 %
您可以使用like '%Wat%',但如果您想要更复杂的条件,您可以考虑使用利用正则表达式的rlike