The Vertica Forum recently got a makeover! Let us know what you think by filling out this short, anonymous survey.
Please take this survey to help us learn more about how you use third party tools. Your input is greatly appreciated!
Cannot getting empty result in case
I cannot get empty result in case and it returns NULL result:
SELECT CASE WHEN ('test' IS NULL) THEN (SELECT 'null_result') ELSE (SELECT 'empty_result' WHERE 1<>1) END;
0
Comments
I found the answer:
https://stackoverflow.com/questions/56372462/how-to-get-empty-result-set-with-a-case-statement
The query gives correct results: