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

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -