Open siwee opened 3 years ago
It works fine in mysql.
The syntax is: <attribute> LIKE <pattern>
The syntax is:
<attribute> LIKE <pattern>
Hi, @npgall
I don't know whether <pattern> LIKE <attribute>
is supported in the standard sql syntax, but postgresql and mysql support it. This is very useful in some cases, so is it possible to provide support for this syntax in cqengine? Many thanks.
Best Regards.
Hi. @npgall
The value of the field
name
is a fuzzypattern
, such asJohn%
; I use SQL:SELECT * FROM cars WHERE 'John Nash' like name
, but it throws an exception. I need your help! Thanks a lot.Code:
Exception:
Best Regards.