Ensuring that a SELECT statement has a WHERE clause filtering on specific columns in Postgresql
Is it possible to force a SELECT statement on a table to include columns from that table in a WHERE clause, in Postgres? For example, given a table T with columns c1 and c2 can I force a SELECT on…