I have existing table called test with two columns id and utilized
Here utilized contains three values in my table null, false and true. Here null is default for utilized
I want to update the rows with utilized false where utilized is null so I tried below query in Postgres but it didn’t work for me.
update test set utilized=false where utilized=null;