SQL query to change lower case in a table to Upper case

In a table the persons name is in lower case "abc" and is there any SQL query to obtain that persons name as "ABC" as an output?

Questions by venkat2604

Showing Answers 1 - 3 of 3 Answers

Muzeeb

  • Jan 6th, 2013
 

Yes, using SQL UPPER function.

Code
  1. SELECT UPPER(name) FROM TABLE;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions