转换函数to_num

时间:2015-11-29 16:17:41

标签: sql oracle

请给我一个to_num函数的示例。将章程转换为数字。我正在使用Oracle

1 个答案:

答案 0 :(得分:3)

TO_NUMBER(string1 [,format_mask] [,nls_language])

请参阅此文档了解更多.. http://www.techonthenet.com/oracle/functions/to_number.php

从那起:

特别是我认为你的答案就在这里:

TO_NUMBER('1210.73', '9999.99')
Result: 1210.73

TO_NUMBER('546', '999')
Result: 546

TO_NUMBER('23', '99')
Result: 23