Skip to content

Commit

Permalink
Fix SQL syntax error in WHERE clause in README
Browse files Browse the repository at this point in the history
  • Loading branch information
zombiezen committed Feb 8, 2024
1 parent b455361 commit ef6d745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ will be compiled to:
```sql
SELECT *
FROM StormEvents
WHERE DamageProperty > 5000 and EventType == 'Thunderstorm Wind'
WHERE DamageProperty > 5000 AND EventType = 'Thunderstorm Wind'
ORDER BY DamageProperty DESC
LIMIT 3;
```
Expand Down

0 comments on commit ef6d745

Please sign in to comment.