@@ -4,7 +4,7 @@ description: A quickstart that walks through using creating a new container and
44author : dlevy-msft
55ms.author : dlevy
66ms.reviewer : maghan, randolphwest
7- ms.date : 09/15 /2023
7+ ms.date : 09/18 /2023
88ms.service : sql
99ms.subservice : tools-other
1010ms.topic : quickstart
@@ -65,12 +65,12 @@ sqlcmd open ads
6565 ,COUNT (il .InvoiceLineID ) AS InvoiceLineCount
6666 ,SUM (il .LineProfit ) AS Profit
6767 ,SUM (il .ExtendedPrice ) AS ExtendedPrice
68- FROM [ Sales].[ Invoices] i
69- INNER JOIN [ Sales].[ Customers] c
68+ FROM Sales . Invoices i
69+ INNER JOIN Sales . Customers c
7070 ON i .CustomerID = c .CustomerID
7171 INNER JOIN Sales .InvoiceLines il
7272 ON i .InvoiceID = il .InvoiceID
73- INNER JOIN [ Sales].[ BuyingGroups] bg
73+ INNER JOIN Sales . BuyingGroups bg
7474 ON c .BuyingGroupID = bg .BuyingGroupID
7575 GROUP BY bg .BuyingGroupName
7676 UNION
@@ -79,12 +79,12 @@ sqlcmd open ads
7979 ,COUNT (il .InvoiceLineID ) AS InvoiceLineCount
8080 ,SUM (il .LineProfit ) AS Profit
8181 ,SUM (il .ExtendedPrice ) AS ExtendedPrice
82- FROM [ Sales].[ Invoices] i
83- INNER JOIN [ Sales].[ Customers] c
82+ FROM Sales . Invoices i
83+ INNER JOIN Sales . Customers c
8484 ON i .CustomerID = c .CustomerID
8585 INNER JOIN Sales .InvoiceLines il
8686 ON i .InvoiceID = il .InvoiceID
87- LEFT JOIN [ Sales].[ BuyingGroups] bg
87+ LEFT JOIN Sales . BuyingGroups bg
8888 ON c .BuyingGroupID = bg .BuyingGroupID
8989 WHERE bg .BuyingGroupID IS NULL
9090 GROUP BY c .CustomerName
0 commit comments