- Walnut Creek
Highlights
- Pro
Pinned Loading
-
tables4tableau
tables4tableau PublicPutting 538 league results into a google sheet into a tableau public worksheet
Jupyter Notebook
-
materialized_view_6.sql
materialized_view_6.sql 1CREATE MATERIALIZED VIEW xpert.england_unified_team_mv AS
2WITH unified_teams AS (
3SELECT
4id,
5home_team AS team
-
view_example_4.sql
view_example_4.sql 1CREATE VIEW xpert.england_view AS
2WITH last_rows AS (
3SELECT
4MAX(id) AS id
5FROM xpert.england
-
view_qa.sql
view_qa.sql 1SELECT
2COUNT (DISTINCT t.id) AS table_row_count,
3COUNT (DISTINCT v.id) AS view_row_count
4FROM xpert.england t
5LEFT JOIN xpert.england_view v USING (id)
-
materialized_view_7.sql
materialized_view_7.sql 1SELECT
2team,
3SUM(full_time_goals_scored) AS goals_scored,
4SUM(full_time_goals_scored - full_time_goals_conceded) AS goal_difference,
53 * SUM(wins) + SUM(draws) AS points
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.