Skip to content

Commit 93acb53

Browse files
authored
Merge pull request #6886 from EnterpriseDB/pgd-quick-patch
Only need one select... silly author
2 parents 9e3a273 + a7414d6 commit 93acb53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

product_docs/docs/pgd/6/get-started/first-steps/loading-data.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ You should see output like this:
9494
And if we want to put that into the context of the top 5 highest ranked home run hitters in 1998, we can do:
9595

9696
```sql
97-
SELECT SELECT playerid, yearid, teamid,
97+
SELECT playerid, yearid, teamid,
9898
rank() OVER (PARTITION BY yearid ORDER BY hr desc) hr_rank,
9999
hr
100100
FROM batters

0 commit comments

Comments
 (0)