Postgresql – How to use the IN clause for multiple columns
I am using Postgres and I would like to put together the following sql queries select * from t1 where type=57 and idt=2001 and date=1; select * from t1 where type=59 and idt=2001 and date=1; select * from t1 where…