Home  >  Article  >  Database  >  What is the oracle conversion to lowercase function?

What is the oracle conversion to lowercase function?

hzc
hzcOriginal
2020-06-09 10:50:303556browse

What is the oracle conversion to lowercase function?

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:

What is the oracle conversion to lowercase function?

What is the oracle conversion to lowercase function?

##Recommended tutorial: "

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Does oracle charge?Next article:Does oracle charge?