Example:
select upper(Emp_Name) from tblEmployee;
insert into tblEmployee (EmpID, Emp_Name) values (100, upper('Banshi'));
update tblEmployee set Emp_Name=upper('Banshi') where Emp_Name='Banshi'
delete from tblEmployee where upper(Emp_Name)='BANSHI'
You can use upper() function in any query, function or procedure.
Read about lower() function in Oracle.
For more tips and tricks on Oracle, click here.
No comments:
Post a Comment
Please give your feedback, questions and suggestions. I will surely answer you.