I have an Alteryx workflow which selects everything from a snowflake table, adds a RecordId column to the table, then uploads the result back to snowflake with a new name.
The problem is: Snowflake does not recognize the RecordID column.
If i use a SELECT * FROM NUMBERED_TABLE
it successfully reads the entire table, displaying every field, including the RecordID.
But if I try to select with SELECT RECORDID FROM NUMBERED_TABLE
I get the message SQL compilation error: error line 1 at position 7 invalid identifier 'RECORDID'
From the UI, Snowflake says the column is indeed called RECORDID.
Trying to rename the column doesn't work either. It simply says the RECORDID column doesn't exist.
I already tried recreating the table by creating a new one based on itself, it's still not recognizing it.