Skip to content

Commit

Permalink
docs: update select-query-builder.md (#6681)
Browse files Browse the repository at this point in the history
Found a typo on the "Adding WHERE expression" section: user.firstName is used in the SQL snippet where you actually meant user.id
  • Loading branch information
tuliomolina committed Sep 8, 2020
1 parent 8b8bc35 commit a8b2845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/select-query-builder.md
Expand Up @@ -342,7 +342,7 @@ createQueryBuilder("user")
Which will produce the following SQL query:

```sql
SELECT ... FROM users user WHERE user.firstName IN (1, 2, 3, 4)
SELECT ... FROM users user WHERE user.id IN (1, 2, 3, 4)
```


Expand Down

0 comments on commit a8b2845

Please sign in to comment.