I have a scenario in oracle where i need to be able to reuse the value of a pseudo column which was calculated previously within the same select statement something like:
You could calculate the value in a sub-query:
select calculated_output process, calculated_output || '-Output2' name from ( select 'output1' calculated_output from dual )