Skip to content

Commit 7d7315b

Browse files
authored
Update the Dedicated SQL Pool Script
The script for exploring the NYC Taxi data didn't work as currently written and needed an extra line.
1 parent 96d8a3b commit 7d7315b

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)