sql >> Base de Datos >  >> RDS >> PostgreSQL

Cómo formatear dinero en PostgreSQL

Un cero dentro:

SELECT to_char(0,'99999999999999990D99');
-- Second question from the comments: Howto make k-seperator
SELECT to_char (1234567890999999.8,'99 999 999 999 999 990D99');

Aquí está el doku en línea:funciones (conversión de tipo de datos) . Tal vez te guste descargarlo.