我在 postgres 中有这个查询,它根据传递的参数查询 1 或 n 个用户:
select name, phone from clients where id in ('id1','id2')
现在,当我尝试在 golang 中使用它时,我遇到了如何将这种类型的变量参数传递给 statement.Query() 函数的问题:
ids := []string{"0aa6c0c5-e44e-4187-b128-6ae4b2258df0", "606b0182-269f-469a-bb29-26da4fa0302b"}
rows, err := stmt.Query(ids...)
这会引发错误:Cannot use 'ids' (type []string) as type []interface{}
当我签入源代码查询时,它可以接收许多接口类型的变量:
func (s *Stmt) Query(args ...interface{}) (*Rows, error) {
return s.QueryContext(context.Background(), args...)
}
如果我手动执行此操作,它会起作用:
rows, err := stmt.Query("0aa6c0c5-e44e-4187-b128-6ae4b2258df0", "606b0182-269f-469a-bb29-26da4fa0302b")
但当然我需要 args 为 1 或更多,并且动态生成。
我正在使用 Sqlx 库。
天涯尽头无女友
相关分类