Re: Hex Integer Input - Mailing list pgsql-sql

From Achilleus Mantzios
Subject Re: Hex Integer Input
Date
Msg-id Pine.LNX.4.44.0303111014180.23176-100000@matrix.gatewaynet.com
Whole thread Raw
In response to Re: Hex Integer Input  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: Tomasz Myrta
Date:
Subject: Re: Execution plan Question
Next
From: Achilleus Mantzios
Date:
Subject: Re: Hex Integer Input