func (s *TODOService) DeleteTODO(ctx context.Context, ids []int64) error {
const deleteFmt = `DELETE FROM todos WHERE id IN (?%s)`
return nil
}
我需要?向查询中添加与 id 列表数量一样多的符号(此处),因此我想结合 fmt.Sprintf 和 strings.Repeat 函数以将符号添加到提供的查询格式中 我应该如何添加它?
白板的微信
相关分类