Postgresql – How to return only values from SELECT and WHERE IN query?
I have the following table - orders: id value price amount 2 'orange' $12 7 8 'yellow' $14 29 5 'green' $17 9 I have to perform SELECT query with WHERE IN clause SELECT value FROM order WHERE id IN…