时间:2021-07-01 10:21:17 帮助过:2人阅读
$str="select distinct shuozhe,tingzhe from sixin where (shuozhe='$user' or tingzhe='$user') order by id desc " ; //查?字串
去掉 or tingzhe='$user'
先全部搜出来,然后循环对比,把不要的去掉。
去掉 or tingzhe='$user'
如果去掉 or tingzhe='$user' ,有一条数据 shuozhe tingzhe
猫 猪
这条就无法显示出来,我是想要,包含“猪“的都会显示
先全部搜出来,然后循环对比,把不要的去掉。
这个不太理解,希望能说的具体点
$str="select shuozhe,tingzhe from sixin where (shuozhe='$user' or tingzhe='$user') group by shuozhe,tingzhe order by id desc " ; //查?字串
$str="select shuozhe,tingzhe from sixin where (shuozhe='$user' or tingzhe='$user') group by shuozhe,tingzhe order by id desc " ; //查?字串
求指导,,,,,,,,,,,,,
建议还是把两个字段的所有为 猪 的都取出来 在php判断吧 你这查询要判断交叉式相等了 mysql不好处理