SQL Union all Statement with Thingworx SQL
I am trying to execute following SQL query statement in MSSQL with Thingworx.
SELECT [C1] FROM [Table 1]
UNION ALL
SELECT [C1] FROM [Table 2];
Getting following issue,
Execute Query failed: com.microsoft.sqlserver.jdbc.SQLServerException: Incorrect syntax near 'allselect'.
But its working without "ALL"

