values have large decimals, round them to 2

This commit is contained in:
Paul Trowbridge 2020-05-05 19:41:07 -04:00
parent c0e348bb2f
commit 48b1beb8af
1 changed files with 7 additions and 0 deletions

7
build/round_pool.sql Normal file
View File

@ -0,0 +1,7 @@
UPDATE rlarp.osm_pool
SET
value_loc = round(value_loc,2),
value_usd = round(value_usd,2),
cost_usd = round(cost_usd,2),
cost_loc = round(cost_loc,2),
units = round(units,2);