Consider the emp table having empname as empname smith rita Which of the following SQl statement display all empname as capitalized?
Select Answer:
select inticap(empname) from emp;
select capital(empname) from emp;
select upper(empname) from emp;
None of the Above
|