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 have a table with a column like 'Connection url' and when I right-click the table in the sidebar and choose 'New Query [Select]', the generated query has the column name without quotes, which obviously fails to execute. The fix should be surrounding such columns that have spaces or special characters with a single quote.
instead of SELECT Connection url FROM blah
it should generate SELECT 'Connection url' FROM blah
The text was updated successfully, but these errors were encountered:
I have a table with a column like 'Connection url' and when I right-click the table in the sidebar and choose 'New Query [Select]', the generated query has the column name without quotes, which obviously fails to execute. The fix should be surrounding such columns that have spaces or special characters with a single quote.
instead of
SELECT Connection url FROM blah
it should generate
SELECT 'Connection url' FROM blah
The text was updated successfully, but these errors were encountered: