vote up 1 vote down star

I am selecting rows from a table, but some of the columns are a text type, but they always have numeric data in them. How can I format them as numbers?

e.g. column quantity heading 'Quantity' format 999,999

However, since the column in the table is text, the numeric formatting is ignored.

flag

3 Answers

vote up 1 vote down check

You will need to TO_NUMBER the column in your query.

link|flag
vote up 1 vote down

To render with thousand seperators, you'll need to...

to_char(to_number(quantity), '999,999')
link|flag
vote up 0 vote down

Thanks Steve,

I can now have:

column quantity heading 'Quantity' format 999,999
select TO_NUMBER(quantity) as quantity from Sales

And I get a right justified report.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.