Skip to content

Commit 534274d

Browse files
authored
Update README.md
1 parent 34acb24 commit 534274d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Lookup Multi-Column with 'in' is also avairable. PostgreSQL is fine, But SQLite3
7474

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

8080
## Installation

0 commit comments

Comments
 (0)