Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
can we use fetch multiple columns using single case statement
Hi Team,
i am using the case statements as below to retrive the data for a single person but it is giving me the 4 rows for same person is there any way to group them all in a single row with different column name?
,CASE
WHEN ques.question_text LIKE '%Any comments%'
THEN nvl(ans_rat.long_text,ans_ent.answer)
ELSE
NULL
END as Verbatim
,CASE
WHEN ques.question_text LIKE '%How likely are you to recommend this program to a colleague?%'
THEN nvl(ans_rat.long_text,ans_ent.answer)
ELSE
NULL
END AS NPS
0