I am struck with following query. Please help me on this.
select
case when column in ('1 Chelsea'|| chr(38) ||
'Friend (2)','5 Manchester''s Song'||chr(38)||
'Hamilton') then 'Others' else N/A
from FA
Output of above query
1 Chelsea & Friend (2) N/A
5 Manchester's Song&Hamilton Others
From the above query the output should be like the following output
1 Chelsea & Friend (2) Others
5 Manchester's Song&Hamilton Others
Please someone help me on this. Also note that the I dont have access to use SET DEFINE OFF
.