使用mysql中的match against以查询结束
我想在 mysql 查询中使用 match agist 检索那些以 'than' 结尾的状态。 我使用了以下查询
SELECT * FROM yp WHERE MATCH (state) AGAINST ('*than' IN BOOLEAN MODE)
,但它返回了空结果集。谁能告诉我确切的查询是什么?
i want to retrieve those state that end with 'than' using match agianst in mysql query.
i used the following query
SELECT * FROM yp WHERE MATCH (state) AGAINST ('*than' IN BOOLEAN MODE)
but it return and empty set of result.can anyone tell me what is the exact query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此查询将仅返回那些以“than”结尾的状态。我想这可能会帮助你..
this query will return only those state are end up with 'than'. I think this may helps U..