Hi we know that is we do the following query in Oracle SQL we get each value as a column and will return the value as value in each column.
select 'Draft','Submitted','Cancelled','Accepted','Accepted and Modified','Open','Pending','Seller Reject' from dual;
Is there a way to return each value as a new row under single column?
Thanks in advance!
I tried this and it works:
This will work on SQL Server.
But for oracle, please add the from claus in each select query like
select 'Seller Reject' as Enum from Dual