Note: For convenient testing, you can copy the query commands. Replace our data table with your corresponding table name. For each command, we just need to copy and paste it into the query window and click the Run button.
SELECT distinct "line_item_line_item_description"
FROM "costmaster"."monthly_report"
LIMIT 10;


SELECT * FROM "costmaster"."monthly_report"
WHERE "line_item_line_item_type" like '%Usage%'
LIMIT 10;


SELECT distinct bill_billing_period_start_date
FROM "costmaster"."monthly_report"
LIMIT 10;

