How, with one request, to get two records from table "Table" with id = 12 and id = 17 in PostgreSQL database?
1 Answer
You can achieve this by using a where in clause:
where id in (12,17);
Fiddle: https://www.db-fiddle.com/f/4jyoMCicNSZpjMt4jFYoz5/696