Hi,
The most portable solution is probably: LOWER(x) LIKE
LOWER('pattern%') (or UPPER). Another solution is: CAST(x AS
VARCHAR_IGNORECASE) LIKE 'pattern%', or create the column using
VARCHAR_IGNORECASE, or call IGNORECASE=TRUE, or use a case insensitive
collation (SET COLLATION, however collations are slow).
> any field
Maybe you want to use fulltext index? H2 supports that.
Regards,
Thomas