Hello,
For POSTGRE DB, it would be better to use "ILIKE" command for any request auto generated with multi-column filters, than LIKE (which is a SQL command).
Thanks
Hello,
For POSTGRE DB, it would be better to use "ILIKE" command for any request auto generated with multi-column filters, than LIKE (which is a SQL command).
Thanks
According to this tutorial and the official docs, ILIKE
is just the case insensitive version of LIKE
. But if you say ILIKE
in contrast to LIKE
also works for double precision columns, the docs must be incomplete here.
Prefer ILIKE over LIKE operator on PostgreSQL servers, for auto-generated queries, to overcome errors with double columns. See https://www.heidisql.com/forum.php?t=36500
Please login to leave a reply, or register at first.