I have a problem with using Bitwise operators in Postgres I get the following error message
ERROR: argument of WHERE must be type boolean, not type integer
My query looks as below
SELECT DISTINCT number,name,contact,special FROM clients WHERE special & 2048;
Any help will be appreciated