rackhaelNEAR SOCIAL 4 - Post Distribution (%)
    Updated 2023-06-30
    SELECT
    CASE WHEN post_image IS NOT NULL THEN 'Post with Image' ELSE 'Post with Text' END AS post_category,
    COUNT(*) AS post_count
    FROM
    near.social.fact_posts
    GROUP BY
    CASE WHEN post_image IS NOT NULL THEN 'Post with Image' ELSE 'Post with Text' END;



    Run a query to Download Data