What is Oracle's lowercase conversion function:
Oracle's uppercase and lowercase conversion function
Convert to uppercase UPPER
Convert to lowercase LOWER
Test:
select UPPER('Test') as u from dual; select LOWER('Test') as l from dual;
Result:
Oracle Tutorial"
The above is the detailed content of What is the oracle conversion to lowercase function?. For more information, please follow other related articles on the PHP Chinese website!