Re: empty

From: ryanne cruz <ryanne(dot)cruz(at)up(dot)edu(dot)ph>
To: pgsql-php(at)postgresql(dot)org, Andrew McMillan <andrew(at)catalyst(dot)net(dot)nz>
Subject: Re: empty
Date: 2003-01-22 07:57:29
Message-ID: 1043222249.3e2e4ee9e2a3a@mail.up.edu.ph
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Thanks again.

Quoting Andrew McMillan <andrew(at)catalyst(dot)net(dot)nz>:

> On Wed, 2003-01-22 at 20:14, ryanne cruz wrote:
> > hi list.
> >
> > i have a column which has some rows int it that has no data. how do i
> select
> > them?
>
> If the column has NULL values:
>
> SELECT column FROM table WHERE other_column IS NULL;
>
> or (if the column has blank values):
>
> SELECT column FROM table WHERE other_column = '';
>
>
> Also, may I recommend:
>
> http://www.postgresql.org/idocs/index.php?user.html
>
>
> Regards,
> Andrew.
> --
> ---------------------------------------------------------------------
> Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
> WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
> DDI: +64(4)916-7201 MOB: +64(21)635-694 OFFICE: +64(4)499-2267
> Survey for nothing with http://survey.net.nz/
> ---------------------------------------------------------------------
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

In response to

  • Re: empty at 2003-01-22 07:36:59 from Andrew McMillan

Browse pgsql-php by date

  From Date Subject
Next Message Frank Bax 2003-01-22 13:38:17 Re: PHP-Postgresql in WindowsXP
Previous Message ryanne cruz 2003-01-22 07:55:14 Re: rtrim