Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisophy authored Jan 29, 2021
1 parent 34acb24 commit 534274d
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 @@ -74,7 +74,7 @@ Lookup Multi-Column with 'in' is also avairable. PostgreSQL is fine, But SQLite3

```python
qs = CompanyBranch.objects.filter(pk__in=[(1,'JP'),(1,'US'),(2,'JP'),])
qs = CompanyBranch.objects.filter(**{'country_code,name':['JP,HONDA','CN,SONY',]})
qs = CompanyBranch.objects.filter(**{'country_code,name':[('JP','HONDA'),('CN','SONY'),]})
```

## Installation
Expand Down

0 comments on commit 534274d

Please sign in to comment.