Re: COPY COMMAND

From: Savita <savita(at)india(dot)hp(dot)com>
To: "Nigel J(dot) Andrews" <nandrews(at)investsystems(dot)co(dot)uk>
Cc: Tino Wildenhain <tino(at)wildenhain(dot)de>, shridhar_daithankar(at)persistent(dot)co(dot)in, pgsql-general(at)postgresql(dot)org
Subject: Re: COPY COMMAND
Date: 2002-11-26 12:06:22
Message-ID: 3DE363BE.545CEDB9@india.hp.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Thanks to all of you for the help this works now with IS NULL or IS NOT NULL.

"Nigel J. Andrews" wrote:

> I think you need to take a step back and pause for a minute to clear your mind.
>
> Now, try:
>
> SELECT * FROM os_customer_master WHERE updated_by is null;
>
> and then:
>
> SELECT * FROM os_customer_master WHERE updated_by is not null;
>
> One of these will show you the tuples you are looking for. If it's the first
> then it was a simple misunderstanding. If it's the second there is something
> else going on if there should be NULLs. Look for rows with nothing shown for
> this column, if there are any they must have invalid data which can't be
> converted to string form, or can be converted to string form but are converted
> to a zero length string or one with spaces.
>
> Well it's a starting point; if not entirely accurate it's probably accurate
> enough for a now considering it's probably just a misunderstanding.
>
> --
> Nigel Andrews
>
> On Tue, 26 Nov 2002, Savita wrote:
>
> > Hi Tino,
> >
> > These query does not work.
> >
> >
> > Tino Wildenhain wrote:
> >
> > > Hi Savita,
> > >
> > > --On Dienstag, 26. November 2002 16:02 +0530 Savita <savita(at)india(dot)hp(dot)com>
> > > wrote:
> > >
> > > > Hi,
> > > > I am able to insert the null field using \N in the text file,but while
> > > > retiving the data I am not able to retrive it.
> > > >
> > > > After inserting data I tried this select statement
> > > >
> > > > select * from os_customer_master where updated_by=' ';
> > > > and
> > > > select * from os_customer_master where updated_by=null;
> > > >
> > > > but it gives 0 rows.then how will I select this values.
> > >
> > > Nothing to do with copy :)
> > > Just try:
> > >
> > > select * from os_customer_master where isnull updated_by;
> > >
> > > Regards
> > > Tino
> >
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html

--
Best Regards
- Savita
----------------------------------------------------
Hewlett Packard (India)
+91 80 2051288 (Phone)
847 1288 (HP Telnet)
----------------------------------------------------

In response to

Browse pgsql-general by date

  From Date Subject
Next Message jose antonio leo 2002-11-26 12:38:55 the "SORT" late very much.
Previous Message Tino Wildenhain 2002-11-26 11:53:34 Re: COPY COMMAND