- ASCII(x) returns the ASCII value of the character x.
- CHR(x) returns the character with the ASCII value of x.
- CONCAT(x, y) concatenates y to x and return the appended string.
- INITCAP(x) converts the initial letter of each word in x to uppercase and returns that string.
- INSTR(x, find_string [, start] [, occurrence]) searches for find_string in x and returns the position at which find_string occurs.
- INSTRB(x) returns the location of a string within another string, but returns the value in bytes for a single-byte character system.
- LENGTH(x) returns the number of characters in x.
- LENGTHB(x) returns the length of a character string in bytes, except that the return value is in bytes for single-byte character sets.
- LOWER(x) converts the letters in x to lowercase and returns that string.
- LPAD(x, width [, pad_string]) pads x with spaces to left, to bring the total length of the string up to width characters.
- LTRIM(x [, trim_string]) trims characters from the left of x.
- NANVL(x, value) returns value if x matches the NaN special value (not a number), otherwise x is returned.
- NLS_INITCAP(x) Same as the INITCAP function except that it can use a different sort method as specified by NLSSORT.
- NLS_LOWER(x) Same as the LOWER function except that it can use a different sort method as specified by NLSSORT.
- NLS_UPPER(x) Same as the UPPER function except that it can use a different sort method as specified by NLSSORT.
- NLSSORT(x) Changes the method of sorting the characters. Must be specified before any NLS function; otherwise, the default sort will be used.
- NVL(x, value) returns value if x is null; otherwise, x is returned.
- NVL2(x, value1, value2) returns value1 if x is not null; if x is null, value2 is returned.
- REPLACE(x, search_string, replace_string) searches x for search_string and replaces it with replace_string.
- RPAD(x, width [, pad_string]) pads x to the right.
- RTRIM(x [, trim_string]) trims x from the right.
- SOUNDEX(x) returns a string containing the phonetic representation of x.
- SUBSTR(x, start [, length]) returns a substring of x that begins at the position specified by start. An optional length for the substring may be supplied.
- SUBSTRB(x) Same as SUBSTR except the parameters are expressed in bytes instead of characters to handle single-byte character systems.
- TRIM([trim_char FROM) x) trims characters from the left and right of x.
- UPPER(x) converts the letters in x to uppercase and returns that string.
|