func (s Sql) In(query string, args ...interface{}) (string, []interface{}, error)
In expands slice values in args, returning the modified query string
and a new arg list that can be executed by a database. The `query` should
use the `?` bindVar. The return value uses the `?` bindVar.