Re: create index

From: Tomasz Myrta <jasiek(at)klaster(dot)net>
To: "ernest_it(at)hotmail(dot)com" <ernest_it(at)hotmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: create index
Date: 2002-11-19 14:13:13
Message-ID: 3DDA46F9.6060304@klaster.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Uz.ytkownik ernest_it(at)hotmail(dot)com napisa?:
> i don't know how to create the index about the following statement.
>
>
> SELECT b.screen_id AS screen_id, b.name AS screen_name
> FROM tbl_showlog AS a CROSS JOIN
> tbl_screen AS b CROSS JOIN
> tbl_company AS c
> WHERE a.screen_id = b.screen_id
> AND b.company_id = c.company_id
> AND c.company_id = 1
> AND c.is_active = 1
> GROUP BY b.screen_id, b.name
> ORDER BY b.screen_id
Change your query to explicit joins. It looks much better and explains
directly your problem.

Example:
SELECT screen_id, B.name as screen_name
FROM
tbl_company C
join tbl_screen B using (company_id)
join tbl_showlog A using (screen_id)
WHERE
company_id=1 and is_active=1

I don't know how many records do you have, but try to create indexes:
1. tbl_company -> company_id
2. tbl_screen -> company_id
3. tbl_showlog -> screen_id

Regards,
Tomasz Myrta

In response to

  • create index at 2002-11-19 06:44:05 from ernest_it@hotmail.com

Browse pgsql-sql by date

  From Date Subject
Next Message Tomasz Myrta 2002-11-19 14:26:36 Re:
Previous Message Oleg Bartunov 2002-11-19 13:36:29 Re: Proposal of hierarchical queries, a la Oracle