How should I declare a query to only use DISTINCT on not null values for certain column but still keep the records for which the column value is null, I’m trying to modify the following query:
I’m trying to modify the following query,

So, basically I want the second query to return all the messages grouped by parent_id when the parent_id column IS NOT NULL and return ALL the records when parent_id IS NULL.
I’m using PG 9.0.4 and Rails 3.1 – any help would be appreciated, thanks!
1 Answer