+3 votes
in Class 12 by kratos

What is the use of functions LCASE ( ) and UCASE()?

1 Answer

+3 votes
by kratos
 
Best answer

The function converts the argument string to lowercase and uppercase respectively.

SELECT LCASE ('COMPUTER Science') computer science

SELECT UCASE ('COMPUTER Science') COMPUTER SCIENCE

Note : LOWER ( ) and UPPER ( ) also do the same job.

...