Skip to content

Commit d397751

Browse files
committed
updated bigquery_billing_products_most_frequently_used.sql
1 parent 1e6f6e0 commit d397751

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bigquery_billing_products_most_frequently_used.sql

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
-- most frequently used products costing more than 1 dollar
1919

2020
SELECT
21-
product,
22-
COUNT(*) AS billing_records
21+
product,
22+
COUNT(*) AS billing_records
2323
FROM
24-
`myproject.mydataset.imported_billing_data`
24+
`myproject.mydataset.imported_billing_data`
2525
WHERE
26-
cost > 1
26+
cost > 1
2727
GROUP BY
28-
product
28+
product
2929
ORDER BY
30-
billing_records DESC;
30+
billing_records DESC;

0 commit comments

Comments
 (0)