Re: [SQL] Howto convert floats to text?
От | José Soares |
---|---|
Тема | Re: [SQL] Howto convert floats to text? |
Дата | |
Msg-id | 3757CBD7.66FBE889@sferacarta.com обсуждение исходный текст |
Ответ на | Howto convert floats to text? (Martin Leja <martin@unix-ag.org>) |
Ответы |
Re: [SQL] Howto convert floats to text?
|
Список | pgsql-sql |
Use this PL/pgSQL script to create text(float), varchar(float), char(float): create function "varchar"(float) returns varchar as 'beginreturn $1; end; ' language 'plpgsql'; create function bpchar(float) returns bpchar as 'beginreturn $1; end; ' language 'plpgsql'; create function text(float) returns text as 'beginreturn $1; end; ' language 'plpgsql'; create function float_text(float) returns text as ' select text($1); ' language 'sql'; Martin Leja ha scritto: > Hi, > > there are the following functions to convert types other than text to text: > > $bash psql -c "\df" | sed -n '1,2 p; /^text.*convert/ p' > > return_type|function |arguments |description > > -----------+------------------+--------------------+------------------------ > ---- > text |datetime_text |datetime |convert > > text |int2_text |int2 |convert > > text |int4_text |int4 |convert > > text |oid_text |oid |convert > > text |text |datetime |convert > > text |text |timespan |convert > > text |text |int4 |convert > > text |text |int2 |convert > > text |text |oid |convert > > text |timespan_text |timespan |convert > > > is there realy no function to convert a float to text? > > -- > Regards, martin@unix-ag.org -- ______________________________________________________________ PostgreSQL 6.5.0 on i586-pc-linux-gnu, compiled by gcc 2.7.2.3 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Jose'
В списке pgsql-sql по дате отправления: