Re: performance comparison: DISTINCT and GROUP BY - Mailing list pgsql-sql

From Christopher Kings-Lynne
Subject Re: performance comparison: DISTINCT and GROUP BY
Date
Msg-id 003501c2477b$a1114bd0$0200a8c0@SOL
Whole thread Raw
In response to performance comparison: DISTINCT and GROUP BY  (Devrim GUNDUZ <devrim@oper.metu.edu.tr>)
List pgsql-sql
Hi Devrim,

You can use the EXPLAIN ANALYZE syntax to find out quite easily.

Chris

----- Original Message ----- 
From: "Devrim GUNDUZ" <devrim@oper.metu.edu.tr>
To: "PostgreSQL Mailing Lists-SQL" <pgsql-sql@postgresql.org>
Sent: Monday, August 19, 2002 7:22 PM
Subject: [SQL] performance comparison: DISTINCT and GROUP BY


> 
> Hi,
> 
> We have two different queries:
> 
>  SELECT name,surname  FROM my_table GROUP BY name;
> 
> and
> 
>  SELECT DISTINCT on(name) name,surname  * FROM my_table;
> 
> which gives us the same result.
> 
> Do these queries differ by their performances? I mean, which one works 
> faster? DISTINCT or GROUP BY?
> 
> Best regards.
> 
> -- 
> 
> Devrim GUNDUZ
> 
> devrim@oper.metu.edu.tr Tel  : (312) 295 9318
> devrim.gunduz@linux.org.tr Faks : (312) 295 9494
> 
> Web : http://devrim.oper.metu.edu.tr
> -------------------------------------
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
> 



pgsql-sql by date:

Previous
From: Devrim GUNDUZ
Date:
Subject: performance comparison: DISTINCT and GROUP BY
Next
From: Fritz Lehmann-Grube
Date:
Subject: recursive function returning "setof"