1

例如,我在表格中有以下 gorm 对象。

user
+----+------+
| id | name |
+----+------+
| 1  | John |
+----+------+
| 2  | Jane |
+----+------+

phones
+----+------+
| id |number|
+----+------+
| 1  | 0945 |
+----+------+
| 2  | 0950 |
+----+------+
| 3  | 1045 |
+----+------+

user_phones
+----+-------+--------+
| id |user_id|phone_id|
+----+-------+--------+
| 1  | 1     | 1      |
+----+-------+--------+
| 2  | 1     | 2      |
+----+-------+--------+
| 3  | 2     | 3      |
+----+-------+--------+

使用 gorm 我想选择所有没有给定用户的手机。类似的东西:选择 * 手机,其中 user_phones.user_id != 1 这就是我试过的:

Gdb.Order("id desc").Where("status = ?", true).Find(&phones).Related("UserPhones").Not("UserPhones.User.ID = ?", user.ID)
4

1 回答 1

1

我使用 join 而不是 gorm 的相关来使这个工作。也许不是惯用的 gorm,但我对 gorm 中的高级关系从来没有任何运气。

Gdb.LogMode(true)

if err := Gdb.Joins("left join user_phones on phones.id=user_phones.phone_id").Order("id desc").Where("status = ?", true).Not("user_phones.user_id = ?", user.Id).Find(&phones).Error; err != nil {
    fmt.Printf("%v\n", err)
} else {
    fmt.Printf("result = %+v\n", phones)
}

这将产生以下 SQL:

SELECT  `phones`.* FROM `phones` left join user_phones on phones.id=user_phones.phone_id WHERE (status = 'true') AND NOT (user_phones.user_id = '1') ORDER BY id desc

并输出:

result = [{Id:3 Number:1045}]

我使用了 mysql,因为我已经习惯了,但我看不出 sqlite 有什么不同。

于 2016-10-11T09:29:18.470 回答