Rui Cunha wrote:

i suggest you to use the LIKE operator instead of the relational operator.

You should try your suggestions before you.. er, suggest them:

mysql> select 'a' like 'a';
+--------------+
| 'a' like 'a' |
+--------------+
|            1 |
+--------------+
1 row in set (0.00 sec)

mysql> select 'a' like 'A';
+--------------+
| 'a' like 'A' |
+--------------+
|            1 |
+--------------+
1 row in set (0.00 sec)

--
---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to