In my database, i have a column "refused", she can have 0 or 1 or NULL value.
I want to get only rows with 0 and NULL values.
I tried this :
->andWhere('b.refused IS NULL')
It's okay, but if i want to get the 0 values too that's not working :
->andWhere('b.refused = 0')
Anyone know how do this or how to don't get any rows where there is "1" ?
Thank you.