PostgreSQL - Error: Expected =, <, <=, <>, >, >=, !=, got 'IS' #9695
Unanswered
crmpicco
asked this question in
Support Questions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am having an issue with the Doctrine Query Builder in my Symfony 4.4 application.
The specific part of my query that is failing is the
IS NOT TRUE
part.I get the following error:
I have a tried a variety of
<> TRUE
,!= TRUE
and= FALSE
but I haven't been able to pull the data I want out.The query that works when I query the PostgreSQL database manually is:
...AND uefa IS NOT TRUE;
How can I tweak this query to pull out non-truthy values from this boolean field?
Beta Was this translation helpful? Give feedback.
All reactions