Home Database Mysql Tutorial How to Correctly Use PDO Prepared Statements for MySQL LIKE Queries in PHP?

How to Correctly Use PDO Prepared Statements for MySQL LIKE Queries in PHP?

Dec 09, 2024 pm 07:50 PM

How to Correctly Use PDO Prepared Statements for MySQL LIKE Queries in PHP?

PHP PDO Prepared Statement -- MySQL LIKE Query

PDO prepared statements offer a secure and efficient way to execute SQL queries with dynamic parameters. When working with MySQL LIKE queries, employing proper syntax is crucial.

Question:

A developer is facing challenges in executing a MySQL LIKE query using PDO in PHP, despite the query functioning correctly in the MySQL client. The code is failing to return results, and various syntax variations have been attempted unsuccessfully.

Answer:

The incorrect syntax in the code lies within the prepare and execute statements. The issue is the unnecessary use of double quotes and incorrect parameter binding. Here's the corrected code:

$sql = 'SELECT   hs.hs_pk, 
          hs.hs_text, 
          hs.hs_did, 
          hd.hd_did, 
          hd.hd_text, 
          hv.hv_text, 
          hc.hc_text 
FROM      hs 
LEFT JOIN hd 
 ON       hs.hs_did = hd.hd_did 
LEFT JOIN hd 
 ON       hd.hd_vid = hv.hv_id 
LEFT JOIN hc 
 ON       hd.hd_pclass = hc.hc_id
WHERE     hs.hs_text LIKE :searchTerm
LIMIT 25';

$prep = $dbh->prepare($sql);
$ret = $prep->execute(array(':searchTerm' => '%'.$searchTerm.'%'));
Copy after login

Explanation:

Prepared statements work by sending the query to the database without any parameter values embedded in it. The parameters are sent separately to be bound by the database engine. Adding double quotes to the parameter value in the execute statement is incorrect as PDO will automatically enclose the parameter value in quotes if needed.

Additionally, the LIKE operator requires percentages around the search term to allow for partial matches. In the incorrect code, the search term is incorrectly bounded with double quotes instead of the necessary percentage signs.

By correcting these syntax errors, the PDO prepared statement can be used to successfully execute MySQL LIKE queries.

The above is the detailed content of How to Correctly Use PDO Prepared Statements for MySQL LIKE Queries in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Reduce the use of MySQL memory in Docker Reduce the use of MySQL memory in Docker Mar 04, 2025 pm 03:52 PM

Reduce the use of MySQL memory in Docker

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

How do you alter a table in MySQL using the ALTER TABLE statement?

How to solve the problem of mysql cannot open shared library How to solve the problem of mysql cannot open shared library Mar 04, 2025 pm 04:01 PM

How to solve the problem of mysql cannot open shared library

Run MySQl in Linux (with/without podman container with phpmyadmin) Run MySQl in Linux (with/without podman container with phpmyadmin) Mar 04, 2025 pm 03:54 PM

Run MySQl in Linux (with/without podman container with phpmyadmin)

What is SQLite? Comprehensive overview What is SQLite? Comprehensive overview Mar 04, 2025 pm 03:55 PM

What is SQLite? Comprehensive overview

Running multiple MySQL versions on MacOS: A step-by-step guide Running multiple MySQL versions on MacOS: A step-by-step guide Mar 04, 2025 pm 03:49 PM

Running multiple MySQL versions on MacOS: A step-by-step guide

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

How do I configure SSL/TLS encryption for MySQL connections?

See all articles