我有数组 int64 值的列表
ids = [{1} {2} {3}]
我想在 db 查询中使用上述数组来过滤掉 ID 不在上述 ID 中的记录。
SELECT * from table where id not in (1,2,3);
我尝试了很多方法,但未能创建查询字符串。
我有数组 int64 值的列表
ids = [{1} {2} {3}]
我想在 db 查询中使用上述数组来过滤掉 ID 不在上述 ID 中的记录。
SELECT * from table where id not in (1,2,3);
我尝试了很多方法,但未能创建查询字符串。
我创建了一个示例场景,如下所示:
func main() {
ids := []int{1, 2, 3}
var tmp []string
for _, v := range ids {
tmp = append(tmp, fmt.Sprint(v))
}
query := "SELECT * from table where id not in (" + strings.Join(tmp, ",") + ")"
fmt.Println(query)
}
或者
您可以在 go playground链接中运行它