We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
var sets []string =[]string{"0001","0004"} rows, err := db.Query(`SELECT set_id,set_name FROM sets where set_id in (?)`, strings.Join(sets, ","))
[can't work]
in mysql workbench: SELECT set_id,set_name FROM sets where set_id in ("0001","0004") [can work]
SELECT set_id,set_name FROM sets where set_id in ("0001","0004")