954,597 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Oracle Urgent - how to get only the upper case data

hi,

I need to know how to get only the upper case currency from a table using oracle.


e.g:- data for currency will be as follows

USD
AUD
EUR
SGD
AUd
uSD
EuR

I need to get only the upper case currency among all the other currency such as
USD
AUD
EUR
SGD

what is the logic need to be used for it?

Thanks in advance

Anitha bala
Newbie Poster
2 posts since Dec 2008
Reputation Points: 10
Solved Threads: 0
 

Hi,

The following query gives all the data in upper case

select Currency_desc from tablename where upper(Currency_desc)=Currency_desc

thanks

hi,

I need to know how to get only the upper case currency from a table using oracle.

e.g:- data for currency will be as follows

USD AUD EUR SGD AUd uSD EuR

I need to get only the upper case currency among all the other currency such as USD AUD EUR SGD

what is the logic need to be used for it?

Thanks in advance

Anitha bala
Newbie Poster
2 posts since Dec 2008
Reputation Points: 10
Solved Threads: 0
 

Just use upper as suggested in the previous post.

debasisdas
Posting Genius
6,872 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You