Hi ~ I'm wondering if someone had answered this question, because I'm running into the same problem. To simplify the code, this is what I'm trying to do and getting the same error message: CREATE VIEW EDW_CPD.vw_PMC_TEST AS ( WITH TEST (LABEL) AS ( SELECT 'TEST' AS LABEL ) SELECT * FROM TEST )
Any help is appreciated.
Thank you! D.
Hi ~ I'm wondering if someone had answered this question, because I'm running into the same problem. To simplify the code, this is what I'm trying to do and getting the same error message:
CREATE VIEW EDW_CPD.vw_PMC_TEST AS
(
WITH TEST (LABEL) AS
(
SELECT 'TEST' AS LABEL
)
SELECT *
FROM TEST
)
Any help is appreciated.
Thank you!
D.