Common String Functions in Oracle SQL
UPPER(),LOWER(),INITCAP()– change caseSUBSTR(str, start, length)– extract substringINSTR(str, substr)– find positionLENGTH(str)– length of stringCONCAT(str1, str2)– combine strings
SELECT UPPER('oracle'), LENGTH('sql functions'), SUBSTR('Hello World', 1, 5) FROM dual;