Golang在数据库查询中使用数组值来过滤记录



我有数组int64值的列表

ids = [{1} {2} {3}]

我想在数据库查询中使用上面的数组来过滤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)
}

你可以在去游乐场链接中运行它

相关内容

  • 没有找到相关文章

最新更新