8 lines
110 B
SQL
8 lines
110 B
SQL
|
|
select
|
|
tag, comment, sum(value_usd), sum(pounds)
|
|
from
|
|
rlarp.osm_pool
|
|
group by
|
|
tag, comment;
|