Re: ERROR: operator does not exist: date ~~ unknown

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: Rohit Suman <handsome_94(at)yahoo(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: ERROR: operator does not exist: date ~~ unknown
Date: 2009-04-12 07:36:16
Message-ID: 162867790904120036o1d2ae20dn9fbdc0fc4640a06e@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello

it means - there are not operator LIKE for datatype date. Why do you
do it? Try to look on date_part or extract functions.

Fast solution, bot not optimal, is cast date to text via function
to_char(date, 'mask')

regards
Pavel Stehule

2009/4/12 Rohit Suman <handsome_94(at)yahoo(dot)com>:
> Hi
>
> I've a table bins in which I've a column named "Date In"  which stores
> values of "Date" type. I've postgresql 8.3.5
>
> Now when I execute query " select * from bins where "Date In" like '%'; " I
> get the folowing error :
>
>
> SQL error:
>
> ERROR: operator does not exist: date ~~ unknown
> LINE 1: select * from bins where "Date In" like '%';
> ^
> HINT: No operator matches the given name and argument type(s). You might
> need to add explicit type casts.
>
> In statement:
> select * from bins where "Date In" like '%';
>
> Please help...I'm stuck for like 3-4 hours now on this X_X
>
> Rohit
>
> ________________________________
> Add more friends to your messenger and enjoy! Invite them now.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Rohit Suman 2009-04-12 09:50:22 Fw: ERROR: operator does not exist: date ~~ unknown
Previous Message Rohit Suman 2009-04-12 05:58:37 ERROR: operator does not exist: date ~~ unknown