Re: Select All Columns

From: Bob <luckyratfoot(at)gmail(dot)com>
To: Tan Chen Yee <tancy(at)gussmanntech(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Select All Columns
Date: 2005-09-01 14:49:05
Message-ID: 762e5c05090107491418f284@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

The first question is do you really need all the columns. Most times
you don't need them. There will be network overhead for sure in
returning all columns instead of just the few that you want. Also
select * is not very clear with what is going on in the statement.
Where I work we have standards to always qualify the columns by name
and to not use the *.Another issue I have seen is that if your code
logic assumes that select * returns
column1 column2 column3 and you add a new column to that table your
logic can break. I often see the select * used when people get lazy.
To me select * should only be used in ad-hoc fashion when digging
around in tables and such.

Just my 2 cents

umn

On 9/1/05, Tan Chen Yee <tancy(at)gussmanntech(dot)com> wrote:
> If I want to retrieve all columns from a table, is there any disadvantage
> by
> using select *
> instead of listing all the columns ? Will select * cause overhead, more
> times to run ?
>
> Thanks !
>
> Tan
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Kelly Burkhart 2005-09-01 15:07:21 Array of created types
Previous Message Douglas McNaught 2005-09-01 14:26:43 Re: Select All Columns