Skip to content

Commit 8af2362

Browse files
authored
Fix SQL query in one of the examples
1 parent 8dcc094 commit 8af2362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ select name, description from abseil.repos
5959
### → Get last-updated time and title of the issues closed in the past 3 days in [servo](https://github.com/servo) listed in descending order of last-updated time.
6060

6161
```sql
62-
select updated_at, title from servo.issues.closed.3 order by updated_at, desc
62+
select updated_at, title from servo.issues.closed.3 order by updated_at desc
6363
```
6464

6565
![Screenshot2](https://i.imgur.com/nyXdiEh.png)

0 commit comments

Comments
 (0)