mirror of https://github.com/go-gorm/gorm.git
Add an example with time
This commit is contained in:
parent
a952601f21
commit
640700d391
|
@ -213,6 +213,11 @@ db.Where("name LIKE ?", "%jin%").Find(&users)
|
||||||
|
|
||||||
// AND
|
// AND
|
||||||
db.Where("name = ? and age >= ?", "jinzhu", "22").Find(&users)
|
db.Where("name = ? and age >= ?", "jinzhu", "22").Find(&users)
|
||||||
|
|
||||||
|
// Time
|
||||||
|
db.Where("updated_at > ?", lastWeek).Find(&users)
|
||||||
|
|
||||||
|
db.Where("created_at BETWEEN ? AND ?", lastWeek, today).Find(&users)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Query With Where (Struct & Map)
|
### Query With Where (Struct & Map)
|
||||||
|
|
Loading…
Reference in New Issue