Re: substring ..

From: "Robert B(dot) Easter" <reaster(at)comptechnews(dot)com>
To: Jeff MacDonald <jeff(at)hub(dot)org>, pgsql-sql(at)postgresql(dot)org
Subject: Re: substring ..
Date: 2000-12-19 21:31:42
Message-ID: 00121916314203.02217@comptechnews
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hehe, here is my tests with this:

ctntest2=# SELECT create_date FROM users;
create_date
------------------------
2000-08-29 13:01:53-04
2000-08-27 20:04:41-04
2000-08-27 21:24:28-04
2000-08-30 09:51:16-04
2000-07-25 23:14:08-04
2000-07-25 23:14:08-04
2000-09-01 02:53:02-04
2000-07-25 23:14:08-04
(8 rows)

ctntest2=# SELECT substr(create_date,1,10) FROM users;
substr
------------
2000-08-29
2000-08-27
2000-08-27
2000-08-30
2000-07-25
2000-07-25
2000-09-01
2000-07-25
(8 rows)

ctntest2=# SELECT create_date FROM users WHERE substr(create_date,1,7) =
'2000-08';
create_date
------------------------
2000-08-29 13:01:53-04
2000-08-27 20:04:41-04
2000-08-27 21:24:28-04
2000-08-30 09:51:16-04
(4 rows)

Seems to work fine. My fields are TIMESTAMP. If you really still have
trouble, then try a cast: substr(datefoo::TEXT,1,10) ??

On Tuesday 19 December 2000 14:06, Jeff MacDonald wrote:
> hi folks..
>
> i want to do this to a datetime field..
>
> select foo from table where substr(datefoo,1,11) = '2000-12-14';
>
> it returns no results yet..
>
> select substr(datefoo,1,11) does return some values that say
> 2000-12-14
>
> any clues ?
>
> Jeff MacDonald,
>
> -----------------------------------------------------
> PostgreSQL Inc | Hub.Org Networking Services
> jeff(at)pgsql(dot)com | jeff(at)hub(dot)org
> www.pgsql.com | www.hub.org
> 1-902-542-0713 | 1-902-542-3657
> -----------------------------------------------------
> Facsimile : 1 902 542 5386
> IRC Nick : bignose
> PGP Public Key : http://bignose.hub.org/public.txt

--
-------- Robert B. Easter reaster(at)comptechnews(dot)com ---------
- CompTechNews Message Board http://www.comptechnews.com/ -
- CompTechServ Tech Services http://www.comptechserv.com/ -
---------- http://www.comptechnews.com/~reaster/ ------------

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jie Liang 2000-12-19 21:58:05 Re: Create table doesn't work in plpgsql
Previous Message Francis Solomon 2000-12-19 20:14:00 RE: substring ..