I am trying to use an advances SQL query on OutSystem 11 something like below:
WITH y
AS
(
SELECT *
FROM MyTable
WHERE [base_condition]
),
x
FROM y
WHERE [something_else]
)
FROM x WHERE [something_else]
UNION
FROM x WHERE [something_else];
Is this possible?
Hi Priya,
At least if you're running on a SQL Server database, yes it is possible.
Regards,João
You can use all the SQL functions, if you have SQL Server as backend database.
Thanks & Regards,
Sachin
Do you have reasons to assume this isn't possible? You could simply try out and conclude it works :).