diff --git a/sql/sql/setup_04_create_views.sql b/sql/sql/setup_04_create_views.sql index 215eb9f..6ba6ea0 100644 --- a/sql/sql/setup_04_create_views.sql +++ b/sql/sql/setup_04_create_views.sql @@ -14,7 +14,7 @@ go dbo.rent_prices.rent_price, dbo.rents.rent_date, dbo.members.email_address - FROM dbo.members - INNER JOIN dbo.rents ON dbo.members.member_id = dbo.rents.member_id - INNER JOIN dbo.rent_prices ON dbo.rents.rent_price_id = dbo.rent_prices.rent_price_id - INNER JOIN dbo.locations ON dbo.rents.location_id = dbo.locations.location_id \ No newline at end of file + FROM dbo.members + INNER JOIN dbo.rents ON dbo.members.member_id = dbo.rents.member_id + INNER JOIN dbo.rent_prices ON dbo.rents.rent_price_id = dbo.rent_prices.rent_price_id + INNER JOIN dbo.locations ON dbo.rents.location_id = dbo.locations.location_id