sql >> Databáze >  >> RDS >> PostgreSQL

Dvě otázky pro formátování časového razítka a čísla pomocí postgresql

Zdá se, že funkce to_timestamp() a to_char() bohužel nejsou dokonalé. Pokud nemůžete najít nic lepšího, použijte tato řešení:

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)

Viz také:Jak odstranit tečku v to_char, pokud je číslo celé číslo



  1. Jak přijímat automatická upozornění na změny v tabulkách?

  2. Mám spouštěč autonomní, ale spustím se pouze jednou ve stejné relaci

  3. Jak resetujete heslo SA?

  4. PostgreSQL matematické funkce