Formating numbers to two decimal spaces

From SQLZoo
Jump to navigation Jump to search

Formatting numbers to two decimal places.

schema:gisq

This rounds up or down

SELECT title, score,
        FORMAT(score,'.00')
  FROM movie
  WHERE id <= 10
SELECT name,
   population,
   ROUND(population/1000000,2),
   ROUND(population,-6)
  FROM bbc
  WHERE region='North America'
DataWars, Data Science Practice Projects - LogoDataWars: Practice Data Science/Analysis with +100 Real Life Projects