Re: How To Exclude True Values

Поиск
Список
Период
Сортировка
От Richard Broersma Jr
Тема Re: How To Exclude True Values
Дата
Msg-id 20060606234031.168.qmail@web31807.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на Re: How To Exclude True Values  (<operationsengineer1@yahoo.com>)
Ответы Re: How To Exclude True Values
Re: How To Exclude True Values
Список pgsql-sql
> Richard, that is the result i would need given that
> data set.  i have to digest this version, though.
> 
> should this query be more efficient than the subquery
> version as the table starts to get large?

My experience is that Distinct On queries do not preform as well as their group by counter parts. 
I believe that others have also commented to the same effect.

To speed the query you could apply indexes on the group by fields and the join columns.

Also, I produced a second query using PostgreSQL:

select a.id_i, a.ir_id, a.test, a.stamp
from test a 

join
(
select max(stamp) as mstamp, id_i
from test
group by id_i
) b

on a.stamp = b.mstamp

where a.test = false
;

-- result
id_i | ir_id | test |        stamp
------+-------+------+---------------------   4 |     8 | f    | 2006-06-05 08:00:00





В списке pgsql-sql по дате отправления:

Предыдущее
От:
Дата:
Сообщение: Re: How To Exclude True Values
Следующее
От: Kenneth B Hill
Дата:
Сообщение: Re: Join issue