Re: Hex Integer Input

Поиск
Список
Период
Сортировка
От Achilleus Mantzios
Тема Re: Hex Integer Input
Дата
Msg-id Pine.LNX.4.44.0303111014180.23176-100000@matrix.gatewaynet.com
обсуждение исходный текст
Ответ на Re: Hex Integer Input  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
On Fri, 7 Mar 2003, Tom Lane wrote:

> Achilleus Mantzios <achill@matrix.gatewaynet.com> writes:
> > Hi, is there a way to enter integer data by their HEX
> > representation??
> 
> I'm not sure that this is SQL-spec, but at least as of 7.3, you can
> coerce a bitstring literal to int, so:
> 
> z=# select x'0f';
>  ?column?
> ----------
>  00001111
> (1 row)
> 
> z=# select x'0f'::int4;
>  int4
> ------
>    15
> (1 row)

Thanx.

> 
> Looks like it works for int8 as well.
> 
>             regards, tom lane
> 

-- 
==================================================================
Achilleus Mantzios
S/W Engineer
IT dept
Dynacom Tankers Mngmt
Nikis 4, Glyfada
Athens 16610
Greece
tel:    +30-210-8981112
fax:    +30-210-8981877
email:  achill@matrix.gatewaynet.com       mantzios@softlab.ece.ntua.gr



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

Предыдущее
От: Tomasz Myrta
Дата:
Сообщение: Re: Execution plan Question
Следующее
От: Achilleus Mantzios
Дата:
Сообщение: Re: Hex Integer Input