Skip to content
Advertisement

Snowflake how can we cast all fields of select query when unpivot is not detecting fields with a different types?

Following up on this question, I made the following script:

It will help me transpose a temporary table to add all related fields into another table, where each field/value pair represent a row.

The error I am getting out of this query is:

SQL compilation error: error line 2 at position 77 invalid identifier ‘CAMPNO’

I think it is maybe because the campNo is a number, and all fields should be casted to varchar, so I tried this query:

select cast(campno as varchar) as CAMPNO FROM TEMP_TABLE_NAME;

And it worked, but within the second select statement I got an error:

...from (select cast(CAMPNO as varchar) as campno, T.* FROM TEMP_TABLE_NAME T)

And got an error of:

SQL compilation error: ambiguous column name ‘CAMPNO’

I need to cast all fields inside select * from myTable into varchar.

Advertisement

Answer

The reason you’re getting this error is that, once you unpivot, there is no column named campno. You unpivoted that column into rows:

Setup example

If you do a select * from this source table, you have a column called campno and facility_id:

But once you unpivot the table on the campno and facility_id fields, then the column names become rows and you can no longer select campno, facility_id. You also need to make sure the datatypes of the column you’re unpivoting on are the same (hence the subquery):

See how there is no column named campno or facility_id above? They have been unpivoted into rows and are no longer columns…

I think (but not sure) what you might be looking for is:

It’s pointless to md5(md5()) which I think I’ve seen in another one of your posts so not sure why you’re doing that.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement