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
It's not possible to select ... where foo = true or select ... where foo = false.
select ... where foo = true
select ... where foo = false
That is,
data = [ { "id": 1, "foo": true }, { "id": 2, "foo": false } ]; return select * from data where foo = true;
does not return any results.
Replacing the expression with id = 1 returns a single result, as expected.
id = 1
The text was updated successfully, but these errors were encountered:
(Pull request #592 will fix this.)
Sorry, something went wrong.
Is anyone still working on ql.io? The http://ql.io/ domain doesn't even resolve right now.
@s3u @hochang
No branches or pull requests
It's not possible to
select ... where foo = true
orselect ... where foo = false
.That is,
does not return any results.
Replacing the expression with
id = 1
returns a single result, as expected.The text was updated successfully, but these errors were encountered: