Quick SQL Question

If "Select salary from Employee" returns the following: 120000 70000 95000

How can I get the numbers to line up RIGHT JUSTIFIED?

Reply to
Luminox
Loading thread data ...

You can't format the results of a query without exporting them and using some other application. File | Export...

Tom

Reply to
Terrible Tom

Try this one

select right(replicate(' ', 12) + salary, 12) from employee

"Lum> If "Select salary from Employee" returns the following:

Reply to
Rodney

BeanSmart website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.