Hello,
In Oracle 9i sqlplus, if I have SQL that looks like this:
SELECT user,location FROM mytable and produces something like this:
How can I insert text that will not replace a field output but add text description?
Example desired output:
Thanks,
Michael42
In Oracle 9i sqlplus, if I have SQL that looks like this:
SELECT user,location FROM mytable and produces something like this:
Code:
user location
------ --------
bjones Dallas
jsmith Miami
How can I insert text that will not replace a field output but add text description?
Example desired output:
Code:
user location
------ --------
ABC bjones XYZ Dallas
ABC jsmith XYZ Miami
Thanks,
Michael42