Solved
Forum Discussion
ddellsperger
3 years agoAdmin
It is supported with the PostgreSQL - Execute Snap, I was able to get it working with:
WITH tbl AS (
SELECT ID, Name from Names
)
SELECT DISTINCT Name from tbl
For example, we only support it with a single statement, but you could attach additional CTEs with comma separating them, though.