Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I presume by this you want "text right alignment" to occur. For that, you want to use Oracle "LPAD()" function:csphard said:I would like the title to line up on the right
select lpad(mname,20) || lpad(mtype,20) || state from
(select 'Mickey Mouse' as mname, 'Mouse' as mtype, 'California' as state from dual
union
select 'Donald Duck' as mname, 'Duck' as mtype, 'California' as state from dual
union
select 'Bugs Bunny' as mname, 'Rabit' as mtype, 'California' as state from dual
);
LPAD(MNAME,20)||LPAD(MTYPE,20)||STATE
--------------------------------------------------
Bugs Bunny RabitCalifornia
Donald Duck DuckCalifornia
Mickey Mouse MouseCalifornia