在 golang 中使用 postgres IN 子句

Using postgres IN clause in golang

我一直在尝试在 golang 中使用 postgres IN 子句,但总是出错。这是我要执行的查询。

SELECT id1 FROM my_table WHERE type = (an int) AND id2 = (an int) AND id1 IN (list of UUIDs)

我使用这段代码构建了这个查询,但出现了以下错误。

var params []interface{}
inCondition := ""
params = append(params, type)
params = append(params, id2)
for _, id := range id1 {
    params = append(params, id)
    if inCondition != "" {
        inCondition += ", "
    }
    inCondition += "?"
}
query := fmt.Sprintf(`SELECT id1 FROM my_table WHERE type = ? AND id2 = ? AND id1 IN (%s)`, inCondition)
rows, err := db.Query(query, params...)

我得到的查询:

SELECT id1 FROM my_table WHERE type = ? AND id2 = ? AND id1 IN (?, ?, ?)

参数输出:

[]interface {}=[0 7545449 d323f8d5-ab97-46a3-a34e-95ceac2f3a6a d323f8d5-ab97-46a3-a34e-95ceac2f3a6b d323f8d5-ab97-46a3-a34e-95ceac2f3a6d]

错误:

pq: syntax error at or near \"AND\""

我错过了什么?或者,我将如何让它工作? id1 是 UUID 的一个片段,其长度是可变的。

代替 ?,使用 $1、$2 等作为占位符。

运行 进入类似问题。不记得我到底在哪里捡到这个但我记得在处理整数类型数组与字符串类型数组时仍然 运行 遇到问题。我必须做的是拥有一个本地自定义类型和 return 它的驱动程序兼容值。请参见下面的示例。

// Int64Array is a type implementing the sql/driver/value interface
// This is due to the native driver not supporting arrays...
type Int64Array []int64

// Value returns the driver compatible value
func (a Int64Array) Value() (driver.Value, error) {
    var strs []string
    for _, i := range a {
        strs = append(strs, strconv.FormatInt(i, 10))
    }
    return "{" + strings.Join(strs, ",") + "}", nil
}

强烈建议查看 sqlx. Wrote a simple orm wrapper called papergres 让我的 go + postgres 生活更轻松 :) 试一试。