PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Deux questions pour formater l'horodatage et le nombre à l'aide de postgresql

Il semble que les fonctions to_timestamp() et to_char() ne sont malheureusement pas parfaits.Si vous ne trouvez rien de mieux, utilisez ces solutions :

with example_data(d) as (
    values ('2016-02-02')
    )
select d, d::timestamp || '.0' tstamp
from example_data;

     d      |        tstamp         
------------+-----------------------
 2016-02-02 | 2016-02-02 00:00:00.0
(1 row)

create function my_to_char(numeric)
returns text language sql as $$
    select case 
        when strpos($1::text, '.') = 0 then $1::text
        else rtrim($1::text, '.0')
    end
$$;

with example_data(n) as (
    values (100), (2.00), (3.34), (4.50))
select n::text, my_to_char(n)
from example_data;

  n   | my_to_char 
------+------------
 100  | 100
 2.00 | 2
 3.34 | 3.34
 4.50 | 4.5
(4 rows)

Voir aussi :Comment supprimer le point dans to_char si le nombre est un entier