gpt4 book ai didi

go - 如何在 GORM 中进行多表连接

转载 作者:数据小太阳 更新时间:2023-10-29 03:22:31 47 4
gpt4 key购买 nike

我是 GOLang 和 GORM 的新手,我对如何使用 GORM 进行多表连接有些困惑。

例子:

表格:

Department - Fields (gorm.Modal, dep_name)
Employee - Fields (gorm.Modal, emp_id, emp_name, department_id) //employee is department table child
EmployeeContact - Fields (gorm.Modal, employee_id, emp_contact_no)//Employee contact table is employee table child

查询

SELECT * FROM department d, employee e, employeeContact ec WHERE d.id = e.department_id and e.id = ec.employee_id

如何使用 GORM 进行上述查询?

最佳答案

我一直在这里寻找解决方案,但由于我已经自己弄清楚了,所以我也想在这里发布。我的查询有点不同,我只加入了 2 个表,但我认为这个也应该有效。

if err := db.Table("employee").Select("department.id, employee.department_id, employeeContact.employee_id").Joins("JOIN department on department.id = employee.department_id").Joins("JOIN employeeContact on employeeContact.id = employee.id").Find(&results).Error; err != nil {
return err, ""
}

关于go - 如何在 GORM 中进行多表连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51244274/

47 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com