Skip to content

Commit

Permalink
Merge pull request #6 from imba-tjd/patch-1
Browse files Browse the repository at this point in the history
Remove dup `CREATE VIEW [Orders Qry]`
  • Loading branch information
jpwhite3 authored Mar 21, 2022
2 parents 00e1230 + adc974b commit 46d5f8a
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions Northwind.Sqlite3.create.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6120,35 +6120,6 @@ GROUP BY [Order Details].OrderID;
--
SELECT * FROM [Order Subtotals]; -- OK
--
--[Orders Qry];
DROP VIEW IF EXISTS [Orders Qry];
--
CREATE VIEW [Orders Qry] AS
SELECT Orders.OrderID,
Orders.CustomerID,
Orders.EmployeeID,
Orders.OrderDate,
Orders.RequiredDate,
Orders.ShippedDate,
Orders.ShipVia,
Orders.Freight,
Orders.ShipName,
Orders.ShipAddress,
Orders.ShipCity,
Orders.ShipRegion,
Orders.ShipPostalCode,
Orders.ShipCountry,
Customers.CompanyName,
Customers.Address,
Customers.City,
Customers.Region,
Customers.PostalCode,
Customers.Country
FROM Customers
INNER JOIN Orders ON Customers.CustomerID = Orders.CustomerID;
--
SELECT * FROM [Orders Qry]; -- OK
--
--[Product Sales for 1997]
DROP VIEW IF EXISTS [Product Sales for 1997];
--
Expand Down

0 comments on commit 46d5f8a

Please sign in to comment.