0

I have the following SQL query which returns the correct results:

SELECT *
FROM `tags`
WHERE tag_name = 'בית\\\"ר-ירושלים'

If I change it to

SELECT *
FROM `tags`
WHERE tag_name LIKE 'בית\\\"ר-ירושלים'

or to

SELECT *
FROM `tags`
WHERE tag_name LIKE 'בית\\\"ר-ירושלים%'

It doesn't work. It will work if I remove all the backslashes and " from the query.

4

1 に答える 1

0

@halocursedが言ったように、これはMySqlのバグです。
bugs.mysql.com/bug.php?id=46659

于 2009-10-15T14:57:14.300 に答える