Skip to content

Commit

Permalink
Restored original commenting for 3 lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaytaylor committed Sep 7, 2014
1 parent 250de03 commit 189a7ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,13 @@ db.Where("name = ?", "jinzhu").Find(&users)

db.Where("name <> ?", "jinzhu").Find(&users)

//// IN
// IN
db.Where("name in (?)", []string{"jinzhu", "jinzhu 2"}).Find(&users)

//// LIKE
// LIKE
db.Where("name LIKE ?", "%jin%").Find(&users)

//// AND
// AND
db.Where("name = ? and age >= ?", "jinzhu", "22").Find(&users)
```

Expand Down

0 comments on commit 189a7ef

Please sign in to comment.