如何处理GORM .Group中返回的其他字段

时间:2019-10-09 13:25:27

标签: go go-gorm

如果我在"file_id"字段上进行分组,也如何提取"full_name"表?例如,我可以在struct中创建子&result并将返回值放在那里吗?

type fullname struct{
 full_name string
}

type result struct{
 file_id string
 full_name []fullname
}


db.Table("example_table").Select("file_id, full_name, sum(length) as total").Group("file_id").Scan(&result)

0 个答案:

没有答案