我有一个 id 和一个文本字段。
我需要搜索一个完全匹配的单词或以单个 mysql 查询的字符串中的单词开头。
例如select * from tablename where textfield like "%cam%.
,这将返回 cam 在单曲中的任何位置找到的所有文本 id。
但我需要通过在一个句子中拆分单个单词来获得可以查询的结果。
标识文本
1 Camel_walk.
2 camel does drink water.
3 does Camel_store water.
4 In deset people can find_camel
5 this will not return
当我查询
select * from tablename where textfield like "%camel%.
返回前 1,2,3,4
但我需要得到单词以camel开头的id
1)select * from tablename where textfield like "Camel%"
return 1,3 ( which is not working for me)
or even
2)select * from tablename where textfield like "%Camel"
return 4
这两个查询不起作用可以有人帮忙吗
谢谢