Mysql
 sql >> Database >  >> RDS >> Mysql

Come si usa una clausola LIKE in un'istruzione preparata PDO?

Con PDO, questo può essere fatto come:

$stmt = $db->prepare("SELECT * FROM tbl_name WHERE title LIKE :needle");
$needle = '%somestring%';
$stmt->bindValue(':needle', $needle, PDO::PARAM_STR);
$stmt->execute();
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);