If "Select salary from Employee" returns the following: 120000 70000 95000
How can I get the numbers to line up RIGHT JUSTIFIED?
If "Select salary from Employee" returns the following: 120000 70000 95000
How can I get the numbers to line up RIGHT JUSTIFIED?
You can't format the results of a query without exporting them and using some other application. File | Export...
Tom
Try this one
select right(replicate(' ', 12) + salary, 12) from employee
"Lum> If "Select salary from Employee" returns the following:
Have something to add? Share your thoughts — no account required.
Ask the community — no account required