Are there any rules governing the use of mixed case column in Snowflake pivot tables? I have the following:
create or replace VIEW vw_tag_avg_by_qrtr_hour
as
SELECT t1.*
FROM (SELECT "Quarter Hour Time",
"Tag Description",
...
order by 1
I cannot replace "1" by "Quarter Hour Time". PowerBI chokes on this. HOWEVER, if I use
FROM (SELECT "Quarter Hour Time" QRTR_HOUR_TIME,
both order by QRTR_HOUR_TIME
and PowerBI are fine. This looks like a bug to me.