There is a field of type character in the table, but we are storing numeric values like (Roll number) in this field, so if we want to sort the field (in java) according to numbers.How?

By creating a function for sorting in the front end(guessing, i am not sure. plz answer it)

Questions by sanyogkesar

Showing Answers 1 - 8 of 8 Answers

e.gomathi

  • Feb 7th, 2006
 

select to_number() from order by ;

  Was this answer useful?  Yes

e.gomathi

  • Feb 7th, 2006
 

select to_number(rollnumber) from tname order by rollnumber

  Was this answer useful?  Yes

sateesh240

  • May 7th, 2009
 

Read character column into a PL/SQL table of numeric data type by converting to number, pass the PL/SQL table to JavaScript as a parameter, this is one way.. 

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions