example
SELECT line_item_resource_id,
product_product_name,
line_item_usage_type,
line_item_line_item_type,
floor(sum(line_item_blended_cost)) cost
FROM o11y2022_cur
WHERE year = '2022'
and month = '3'
group by line_item_resource_id,
product_product_name,
line_item_usage_type,
line_item_line_item_type
order by cost desc
limit 50