Overview
Key Features & Functionality
Hi, After upgrade to Appian 25.3, it is not supporting the table alias in SQL query. Example - SELECT ID AS 'Number', LABEL as 'Prop Name' FROM TEST_TABLE - it gives excel header as ID & LABEL but expectation is - 'Number' and 'Prop Name', since thi sis very useful for exporting more than 170 columns of data in excel.Please suggest if anyone knows any work around or suggestion
We have found a workaround by enclosing the query in a subquery. It makes performance worse but if you need it it works.
I.E: SELECT table1.* from (**YOUR QUERY HERE**) as table1
Also, this is not from a single table but need to join multiple tables and we had used previously a view but it gets slow while generating this excel report out.