Ff00ff/mammoth

select where not like

Closed this issue · 3 comments

Is there a way to negate the like/ilike operator?

select * from table where name is not like 'bob%';

Would something like this work?

db.select(star()).from(db.table).where(not(db.table.name.like('bob%'));

Either that or just a notLike operator like we have it for notIn which I would actually prefer.

Created a PR for this #383