Skip to content

Commit

Permalink
Update Non Materialize Views, Roles, and Privileges.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
christianebacani authored Nov 25, 2024
1 parent 92f6111 commit 51d9ae2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CREATE VIEW
WITH
cheapest_prices_per_platforms AS (
SELECT
kaggle_db.platforms.`Platform`,
kaggle_db.platforms.`Platform`,
MIN(kaggle_db.video_game_reviews.`Price`) AS price
FROM
kaggle_db.video_game_reviews
Expand All @@ -29,7 +29,7 @@ ORDER BY
)

SELECT
`Game Title`,
`Game Title`,
cheapest_prices_per_platforms.`Platform`,
cheapest_prices_per_platforms.price
FROM
Expand All @@ -46,12 +46,12 @@ ORDER BY
CREATE VIEW
game_descriptions AS
SELECT
`Game Title`,
`Game Title`,
`User Rating`,
`Price`,
`Platform`,
`Release Year`,
`Genre`,
`Genre`,
`User Review Text`,
`Game Mode`
FROM
Expand Down

0 comments on commit 51d9ae2

Please sign in to comment.