如果我在"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)