
        SELECT 
            upper(match_name) AS label,
            ROUND(SUM(net_tv_india + net_ott_india + net_tv_ott_row + print + social)/10000000, 0) AS net_total
        FROM ipl_data
        WHERE 1=1
     AND match_name in (Match 1,Match 2) GROUP BY 1

        SELECT 
            upper(match_name) AS label,
            ROUND(SUM(net_tv_india + net_ott_india + net_tv_ott_row + print + social)/10000000, 0) AS net_total
        FROM ipl_data
        WHERE 1=1
     AND match_name in ("Match 1","Match 2") GROUP BY 1
