Re: Comparison Operator problem

Поиск
Список
Период
Сортировка
От Robert B. Easter
Тема Re: Comparison Operator problem
Дата
Msg-id 0101091629511U.09559@comptechnews
обсуждение исходный текст
Ответ на Comparison Operator problem  (John Burski <John.Burski@911ep.com>)
Список pgsql-novice
On Tuesday 09 January 2001 16:15, John Burski wrote:
>       Table "products_tbl"
>  Attribute |     Type     | Modifier
> -----------+--------------+----------
>  prod_id   | varchar(10)  | not null
>  prod_desc | varchar(40)  | not null
>  cost      | numeric(6,2) | not null
> Index: products_tbl_pkey
>
> john=# select * from products_tbl
> john-# where cost > .99;
> ERROR:  Unable to identify an operator '>' for types 'numeric' and
> 'float8'
>         You will have to retype this query using an explicit cast
> </snip>

Maybe a cast:

cost > .99::numeric(6,2);


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

В списке pgsql-novice по дате отправления:

Предыдущее
От: John Burski
Дата:
Сообщение: Comparison Operator problem
Следующее
От: Andy Holman
Дата:
Сообщение: Re: Days betwen dates