我有一张这样的桌子
身份证、头衔 1、你好世界 2、世界你好
我喜欢搜索与这个 php 表达式匹配的所有 id:
$searchstring = "hello world is yours"
if (strstr($searchstring,mysql(title)){echo found}
在mysql中我经常使用这个:
select id from table where title LIKE '%....%'
但我需要它的另一面:
select id from table where "hello word is yours" LIKE %title%
结果必须是 id 1 "hello word"
谁能告诉我正确的语法?