Whenever I try to use select * in the Input Tool's SQL editor and connected to a PostgreSQL database, I get the following error:
Error: Input Data (2): Internal Error: Invalid parameter detected in function (null). File: (null) Line: 0 Expression: (null)
Both queries return "successful connection and no errors found when parsing" when clicking the Test Query button on the editor.
This query returns the error:
select *
from lms_dl."PA_STUDENT" s
where s."FNAME" = 'Paul'
But this query works fine:
select s."STUD_ID"
from lms_dl."PA_STUDENT" s
where s."FNAME" = 'Paul'
What am I missing? How do you select all the columns in a table with Postgres and Alteryx? The syntax using select * works fine in other db tools connected to the same Postgres instance.