Skip to content

Commit a49fc05

Browse files
authored
Merge pull request #100440 from TrzeciLacek/patch-1
Update the Dedicated SQL Pool Script
2 parents 879a983 + 7d7315b commit a49fc05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/synapse-analytics/get-started-analyze-sql-pool.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ A dedicated SQL pool consumes billable resources as long as it's active. You can
108108
INTO dbo.PassengerCountStats
109109
FROM dbo.NYCTaxiTripSmall
110110
WHERE TripDistanceMiles > 0 AND PassengerCount > 0
111-
GROUP BY PassengerCount
111+
GROUP BY PassengerCount;
112+
SELECT * FROM dbo.PassengerCountStats
112113
ORDER BY PassengerCount;
113114
```
114115

0 commit comments

Comments
 (0)