Re: hexdecimal constant in postgresql

Поиск
Список
Период
Сортировка
От Chris
Тема Re: hexdecimal constant in postgresql
Дата
Msg-id 1090913372.5322.1.camel@dell
обсуждение исходный текст
Ответ на hexdecimal constant in postgresql  (Chris <list@1006.org>)
Список pgsql-novice
> i was wondering how to specify hexadecimal constants in
> SQL in a way that postgresql understands.
>
> something like:
>
> select 0xFFFF;   -- this doesn't work;
>
> I've googled for it and i've found it can be done with
> encode/decode involving a bytea type - but i'm under
> the impression there must be a more straightforward way...

I've found it myself :)

  select x'FFFF'::int;     -- this works

Bye, Chris.



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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: help with conversion functions
Следующее
От: Rafael Charnovscki
Дата:
Сообщение: Re: Varchar or integer primary key?