oracle to number

Solutions on MaxInterview for oracle to number by the best coders in the world

showing results for - "oracle to number"
Alicia
14 Jan 2019
1TO_NUMBER('1210.73', '9999.99')
2Result: 1210.73
3
4TO_NUMBER('546', '999')
5Result: 546
6
7TO_NUMBER('23', '99')
8Result: 23
Ben
07 Apr 2019
1TO_NUMBER( string1 [, format_mask] [, nls_language] )