sql - Redshift Aginity Workbench - ERROR: 42703: column "XXX" does not exist in table_y -
i've been using mysql workbench while , need work on aginity - i'm trying run simple script:
select min(date) table_y column_header = "xxx" yet error:
error: 42703: column "xxx" not exist in table_y
does command works differently in aginity in mysql workbench? how solve error?
so "=" , "in" different sql commands.
i think problem original query using double quotes instead of single.
try this:
select min(date) table_y column_header = 'xxx'
Comments
Post a Comment