We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to have support for select * from table where id in (pleaseaddsupport)
select * from table where id in (pleaseaddsupport)
For example the one below is not supported correctly
/* name: GetExercisesByIds :many */ SELECT * FROM exercises where id in (?);
The id is generated as a string not as array of strings in the query
func (q *Queries) GetExercisesByIds(ctx context.Context, id string)
I called that function with id value of "'0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"'
"'0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"'
or "0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"
"0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"
and does not work with multiple values. The same query in the mysql console works great
select * from exercsies where id in ('0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"')
returned for me 2 rows.
MySQL
Go
The text was updated successfully, but these errors were encountered:
This is being tracked in #695
Sorry, something went wrong.
Duplicate of #695
No branches or pull requests
What do you want to change?
I would like to have support for
select * from table where id in (pleaseaddsupport)
For example the one below is not supported correctly
The id is generated as a string not as array of strings in the query
I called that function with id value of
"'0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"'
or
"0055bd0b-8629-490d-8552-906d04dfca84,0162e545-2678-4cde-a291-665dcf6251a4"
and does not work with multiple values.
The same query in the mysql console works great
returned for me 2 rows.
What database engines need to be changed?
MySQL
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered: