Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 265fdd8

Browse files
authored
Update quickstart-sqlcmd-create-container.md
1 parent e876d5a commit 265fdd8

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/tools/sqlcmd/quickstart-sqlcmd-create-container.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A quickstart that walks through using creating a new container and
44
author: dlevy-msft
55
ms.author: dlevy
66
ms.reviewer: maghan, randolphwest
7-
ms.date: 09/15/2023
7+
ms.date: 09/18/2023
88
ms.service: sql
99
ms.subservice: tools-other
1010
ms.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

Comments
 (0)