标签: go go-gorm
gorm.DB.Where("id in (?)", IDs).Find(&us)
如果我的ID为[]int{1,1}并且我想要返回两个重复数据,我该怎么办? 在我的项目中,如果ID为[]int{1,1},则只返回给我一个数据
[]int{1,1}