How to build “Star Rating” report in BigQuery (or sparklines, or color gradients)

后端 未结 5 1215
忘了有多久
忘了有多久 2021-02-03 14:44

Suppose I have the followng sample input:

WITH Ratings AS (
    (SELECT \'A\' name, 2 score) UNION ALL
    (SELECT \'B\' name, 0 score) UNION ALL
    (SELECT \'C         


        
5条回答
提交回复
热议问题