Skip to content

Instantly share code, notes, and snippets.

@np422
Created October 30, 2012 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save np422/3980707 to your computer and use it in GitHub Desktop.
Save np422/3980707 to your computer and use it in GitHub Desktop.
xtest=# set lc_numeric='en_US.UTF-8';
SET
xtest=# select to_char(2.34,'999D99');
to_char
---------
2.34
(1 row)
xtest=# set lc_numeric='sv_SE.UTF-8';
SET
xtest=# select to_char(2.34,'999D99');
to_char
---------
2,34
(1 row)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment