Pulse version: 3.13
Server: linux ubuntu 20
Backend db: dolphindb v2.00.143
Raw SQL: select * from OrderReport
Table schema: attachment
Pivot column: Account
Error:
SELECT "Account", count(*) as "c" FROM (select * from OrderReport ) GROUP BY "Account" ORDER BY "Account"
FIX:
Change bellow SQL FROM
SELECT "Account", count(*) as "c" FROM (select * from OrderReport ) GROUP BY "Account" ORDER BY "Account"
TO
SELECT Account, count(*) as "c" FROM (select * from OrderReport ) GROUP BY Account ORDER BY Account
OR
SELECT `Account`, count(*) as "c" FROM (select * from OrderReport ) GROUP BY `Account` ORDER BY `Account`
user-lin user-tt