From: | "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com> |
---|---|
To: | Tony Caduto <tony_caduto(at)amsoftwaredesign(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Simple PG Sql question (i hope) |
Date: | 2005-08-08 19:47:56 |
Message-ID: | 42F7B6EC.4020608@commandprompt.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Tony Caduto wrote:
> I have a simple query:
>
> select true,78,'Here is a value' as stringfield, testname from tbltest;
>
> it returns:
> true as bool
> 78 as int4
> and the string 'Here is a value' as Unknown
>
> Why is it that all the values besides the string come back with the
> correct type?
> what is a simple string being returned as unknown instead of varchar or
> text?
Because it doesn't know what you want it as :) For example in 8.0.3:
template1=# select true,78,'Here is a value' as stringfield;
bool | ?column? | stringfield
------+----------+-----------------
t | 78 | Here is a value
(1 row)
Or
template1=# select true,78::int4,'Here is a value'::text as stringfield;
bool | int4 | stringfield
------+------+-----------------
t | 78 | Here is a value
(1 row)
Sincerely,
Joshua D. Drake
>
>
> Thanks,
>
> Tony
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
--
Your PostgreSQL solutions company - Command Prompt, Inc. 1.800.492.2240
PostgreSQL Replication, Consulting, Custom Programming, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/
From | Date | Subject | |
---|---|---|---|
Next Message | Matt Miller | 2005-08-08 19:53:35 | Testing of MVCC |
Previous Message | Tony Caduto | 2005-08-08 19:30:13 | AMD 64 RPM? |