builder
builder copied to clipboard
How to use Mysql's "regexp" or postgresql's "~*" ?
mysql: select * from user where name regexp '^tom'; postgresql: select * from user where name ~* '^[a-h]'
You can use Expr()
or you can implement yours Cond
.