Извлечение значения NULL datetime в MySQL с помощью GORM

Я хочу получить последнюю строку посещения, имеющую out_time как NULL используя Горм.NIL сам по себе является типом, где VisitDetail OutTime mysql.NullTime,

Код:-

var visitDetail models.VisitDetail
db.Where("out_time=? ", nil).Last(&visitDetail)

//model VisitDetails
type VisitDetail struct {
    Id              int
    Visitor         Visitor  `gorm:"foreignkey:ClientId;association_foreignkey:Id"`
    VisitorId       int      `gorm:"not null;"`
    Location        Location `gorm:"foreignkey:LocationId;association_foreignkey:Id"`
    LocationId      int      `gorm:"not null;"`
    Purpose         string
    InTime          time.Time `gorm:"not null;"`
    OutTime         mysql.NullTime
    User            User `gorm:"foreignkey:ClientId;association_foreignkey:Id"`
    UserId          int  `gorm:"not null;"`
    Status          int  `gorm:"not null;"`
    ApproveByClient int  `gorm:"not null;"`
}

Запрос: -

select * from visit_details where out_time is NULL order by id desc limit 1;
+----+------------+-------------+---------+---------------------+----------+---------+--------+-------------------+
| id | visitor_id | location_id | purpose | in_time             | out_time | user_id | status | approve_by_client |
+----+------------+-------------+---------+---------------------+----------+---------+--------+-------------------+
| 20 |          1 |           8 |         | 2018-02-20 17:13:25 | NULL     |    1609 |      0 |                 0 |
+----+------------+-------------+---------+---------------------+----------+---------+--------+-------------------+
1 row in set (0.04 sec)

2 ответа

Решение

Go не распознает NULL, в частности. Я думаю, что вы можете достичь этого, используя необработанный запрос в GORM. как это.

db.Raw("SELECT * FROM visit_details WHERE out_time is NULL order by id desc limit 1").Scan(&visitDetail)

Это один для получения столбца. Надеюсь это поможет.

Вы можете установить OutTime в качестве указателя, чтобы он мог быть нулевым. Как видно из документа:

type YourStruct struct {
     OutTime *time.Time
}

Затем запустите ваш запрос

db.Where("out_time = ?", nil).Last(&visitDetail)

Просто укажите IS NULL в запросе без подстановочного знака.

db.Where("out_time IS NULL").Last(&visitDetail)

Правильный код:

db.Where("out_time is ?", nil).Last(&visitDetail)
Другие вопросы по тегам