From: | "Alexander Staubo" <alex(at)purefiction(dot)net> |
---|---|
To: | "volunteer(at)spatiallink(dot)org" <volunteer(at)spatiallink(dot)org> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: query help |
Date: | 2007-09-13 15:17:13 |
Message-ID: | 88daf38c0709130817se4a12d8gafd507061e000ca5@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On 9/13/07, volunteer(at)spatiallink(dot)org <volunteer(at)spatiallink(dot)org> wrote:
> hello
>
> table is
> +-------+-------+------+-------+
> | id | one | two | three |
> +-------+-------+------+-------+
> | first | Jack | Jill | Mary |
> | last | Ja | Ji | Ma |
> +-------+-------+------+-------+
>
> result is
> +----+-------+-------+
> | id | one | two |
> +----+-------+-------+
> | first | Jack | Jill |
> | last | Ja | Ji |
> +----+-------+-------+
>
> query is??
Unless I am missing something crucial, this is SQL 101:
select id, one, two from foo;
Alexander.
From | Date | Subject | |
---|---|---|---|
Next Message | Rodrigo De León | 2007-09-13 15:18:58 | Re: query help |
Previous Message | Richard Huxton | 2007-09-13 15:11:22 | Re: Data Model - Linking to PHP Code - Literature |