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 had a similar problem in distSQL.Because my field is name, but name is the distSQL keyword.
how do u solve it?
I changed name to t_name.Because it's the most direct and the fastest.I have an untested idea.If you have to use keywords as column names, I'll try later to see if my idea solves this problem.
problem:
select position from test;
error:
dhri=> select position from org_staff;
ERROR: You have an error in your SQL syntax: no viable alternative at input 'selectpositionfrom'
i changed to:
dhri=> select 'position' from org_staff;
?column?
position
position
position
The text was updated successfully, but these errors were encountered: