CHR() Function in Oracle

In Oracle, the CHR() function returns a character based on the code values provided as an argument.

More specifically, it returns the character having the binary equivalent to its argument as a VARCHAR2 value in either the database character set or, if you specify USING NCHAR_CS, the national character set.

Read more

TRIM() Function in Oracle

In Oracle, the TRIM() function allows you to trim characters from the sides of a string.

You can trim leading characters, trailing characters, or both.

By default, it trims white space, but you can optionally specify a different character or characters to trim.

Read more