Level 24
This is currently not possible (see this rejected PR).
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
For example how can I build a query like this ?
SELECT * FROM users WHERE not (level > 50 and sex = 1);
I don't want to convert it to this manually, I just want to reverse the whole result with the NOT operator. Can I do it with the query builder?
SELECT * FROM users WHERE level <= 50 and sex = 0;
Please or to participate in this conversation.