oci_bind_by_name doesn't work with LIKE clause

2019-02-26 22:21发布

My code is something like this:

$s = ociparse($conn, "SELECT u.email, u.city FROM tickets t, users u WHERE t.userId = u.userId AND u.city LIKE '%:city%'");
$city = $_GET['city'];
oci_bind_by_name($s, ":city", $city);

Apparently, it can't replace the ":city"

The warning I get:

Warning: oci_bind_by_name(): ORA-01036: illegal variable name/number in C:\xampp\htdocs\phpOracle\tickets.php on line 41

1条回答
ら.Afraid
2楼-- · 2019-02-26 22:46

You need to bind it like this, you have to concatenate the % signs with it and you cannot have your bound variable wrapped in single quotes:

$s = ociparse($conn, "SELECT u.email, u.city FROM tickets t, users u WHERE t.userId = u.userId AND u.city LIKE '%' || :city || '%'");
查看更多
登录 后发表回答