英文:
Gorm for batch deletion
问题
Golang使用Gorm框架进行批量删除。如何编写这个语句?
func DeleteUsers(id []int64) error {
return db.Table("users").Where("id IN (?)", id).Delete(&User{}).Error
}
使用上述方法后,表中的所有数据将被清除。
英文:
Golang uses the Gorm framework for batch deletion. How to write this statement?
func DeleteUsers(id []int64) error {
return db.Table("users").Delete(id).Error
}
After using the above method, all the data in the table will be cleared.
答案1
得分: 0
你可以按照以下方式更新代码以解决问题。
func DeleteUsers(id []int64) error {
return db.Table("users").Where("users.id", id).Delete(struct{}{}).Error
}
英文:
You can update the code as below to solve the issue.
func DeleteUsers(id []int64) error {
return db.Table("users").Where("users.id", id).Delete(struct{}{}).Error
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论