IN
スライスの値について mysql データベースのテーブルをクエリしたい:
var qids []int
//fill qids dynamically
err = database.SQL.Select("es,
"SELECT * FROM quote WHERE qid IN $1", qids)
if err != nil {
log.Println(err)
}
しかし、私はこのエラーが発生します:
sql: converting Exec argument #0's type: unsupported type []int, a slice
quotes []
どうすればこれを修正できますか?