InterviewSolution
Saved Bookmarks
| 1. |
How To Convert Numeric Values To Character Strings? |
|
Answer» You can CONVERT numeric values to character STRINGS by using the CAST(value AS CHAR) function as SHOWN in the following examples: SELECT CAST(4123.45700 AS CHAR) FROM DUAL; 4123.45700You can convert numeric values to character strings by using the CAST(value AS CHAR) function as shown in the following examples: |
|