You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can query a table which has a numeric column ok, but when I query a table with a column that is string, it fails with a sql error:
This query works, on a numeric column:
select _name, age, sex from animals where age > 3
it returns the proper results .. but this fails:
select _name, age, sex from animals where sex = “M”
it returns the following error:
"Binder Error: Referenced column "“M”" not found in FROM clause!\nCandidate bindings: "animals.age"\nLINE 1: ...ame, age, sex from animals where sex = “M”\n
The text was updated successfully, but these errors were encountered:
I can query a table which has a numeric column ok, but when I query a table with a column that is string, it fails with a sql error:
This query works, on a numeric column:
select _name, age, sex from animals where age > 3
it returns the proper results .. but this fails:
select _name, age, sex from animals where sex = “M”
it returns the following error:
"Binder Error: Referenced column "“M”" not found in FROM clause!\nCandidate bindings: "animals.age"\nLINE 1: ...ame, age, sex from animals where sex = “M”\n
The text was updated successfully, but these errors were encountered: