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

Comment formater de l'argent dans PostgreSQL

Un zéro à l'intérieur :

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');

Voici le online-doku :functions (conversion de type de données) . Peut-être que vous aimez le télécharger.