Character Functions In Oracle

Tech Guy on October 1st, 2009

Character Functions in oracle
String function plays important role in oracle as often it is required to convert the string or extract certain part of it. These functions accept column value or an expression as the input.

ASCII
This function is used to get the ASCII value of a character.
E.g. SELECT ASCII (’A’) from [...]

Continue reading about Inbuilt Functions in Oracle