I'm trying to query a SQL database and am able to query it if I just put the following in query:
db.schema.table
However, when I try to refine this and only pull a few columns, I get a no columns returned error. See below for my query:
Select_Statement:
'SELECT col1, col2, col3, col4 '
Query:
[Select_Statment] +
'FROM schema.db.table'
What could be my issue?