Re: Indices - ¿filas repetidas en el indice?

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: moz <mozstyle2002(at)gmx(dot)net>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Indices - ¿filas repetidas en el indice?
Date: 2005-11-14 18:14:52
Message-ID: 20051114181452.GA32528@surnet.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

moz escribió:

> select count(*) from clientes where rut = 1;
> Aggregate (cost=3659.27..3659.27 rows=1 width=0)
> -> Index Scan using k_rut on clientess (cost=0.00..3655.50 rows=1508
> width=0)
> Index Cond: (rut = 1)
>
> select * from clientes where rut = 1;
> Index Scan using k_rut on clientes (cost=0.00..3655.50 rows=1508 width=436)
> Index Cond: (rut = 1)

Vaya, por favor envia el EXPLAIN ANALYZE de estas dos consultas.

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

In response to

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message moz 2005-11-14 18:56:12 Re: Indices - ¿filas repetidas en el indice?
Previous Message Jaime Casanova 2005-11-14 18:09:24 Re: Indices - ¿filas repetidas en el indice?