小编典典

PHP / PDO:SQl查找包含字符串值的行

sql

我尝试发出请求以查找包含特定String值的行。

这是我的代码的一部分:

// Getting motscles value
        $motscles = $_POST['motscles'];

        // Prepare a second SQL request to get all annonces posted by the user
        $result2=$connexion->prepare("select * from annonces where titre LIKE = '%".$motscles."%' ");

我没有结果,我认为我的要求不好..


阅读 197

收藏
2021-04-15

共1个答案

小编典典

LIKE =

那是不正确的,应该是-

LIKE  '%".$motscles."%'

在此处检查类似通配符的用法

http://dev.mysql.com/doc/refman/5.0/zh-CN/string-comparison-
functions.html#operator_like

2021-04-15