SQLite Forum

Show number with thousands separator
Login
column is INTEGER
SQLite version 3.16.2 2017-01-06 16:32:41

SELECT Country, Population, printf("%,d",Population) as PopF 
Error: near "%": syntax error


How can I show the numbers with comma-thousand-separators?

Thanks