473,499 Members | 1,568 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Query to fetch name with mixed case

4 New Member
Hi All,

Can anyone of you send me a query to fetch only the name of the users who has name in mixed case (lower and upper case) .

And query to fetch only name with upper case ?

Thanks.
Nov 6 '08 #1
11 8769
debasisdas
8,127 Recognized Expert Expert
Can you post the query that you are working on.
Nov 6 '08 #2
suvitha
4 New Member
Can you post the query that you are working on.

Hi,

I hv not tried that one .....as i am not familiar with that .

Can u help.
Nov 6 '08 #3
suvitha
4 New Member
select * from tablename where regexp_like(name,'[A-Z]'); - I executed this query and got

ERROR at line 1:ORA-00920: invalid relational operator
Nov 6 '08 #4
suvitha
4 New Member
[IMG]Hello[/IMG]

Found the query:

select name from tablename where name != lower(name);


Hope this will help others
Nov 6 '08 #5
amitpatel66
2,367 Recognized Expert Top Contributor
For Mixed Case and Upper Case fetch

Expand|Select|Wrap|Line Numbers
  1.  
  2. select * from emp where 
  3. LENGTH(REPLACE(TRANSLATE(name,'abcdefghijklmnopqrstuvwxyz',' '),' ','')) > 0
  4.  
  5.  
Nov 10 '08 #6
Pilgrim333
127 New Member
For Mixed Case and Upper Case fetch

Expand|Select|Wrap|Line Numbers
  1.  
  2. select * from emp where 
  3. LENGTH(REPLACE(TRANSLATE(name,'abcdefghijklmnopqrstuvwxyz',' '),' ','')) > 0
  4.  
  5.  
wouldn't it be easier to use

Expand|Select|Wrap|Line Numbers
  1. select * from emp
  2. where name != lower(name) --Only this line in case of mixed cases and upper cases
  3. and   name != upper(name) --add this line just to get mixed cases
  4.  
Nov 10 '08 #7
amitpatel66
2,367 Recognized Expert Top Contributor
Its always better not to use != (inequality) sign with strings

My solution that includes TRANSLATE,REPLACE can be easily rewritten using Regular Expressions in 10g. I am using 9i in my office so provided that solution
Nov 11 '08 #8
Pilgrim333
127 New Member
Well, in this case, the inequality is the lesser evil. The translate and replace will have to go through each string from the start to the end, even if there are no occurances of the occurance to replace or translate. Using a combination of translate and replace will make the query a lot slower. The inequality will stop with the comparison as soon as it finds the first difference.

Pilgrim.
Nov 11 '08 #9
amitpatel66
2,367 Recognized Expert Top Contributor
Its not becuase of performance that I am asking not to use inequality, its because it causes wrong results some times in real time scenarios
Nov 11 '08 #10
Pilgrim333
127 New Member
Ah ok, in some cases it can lead to wrong results indeed.

Pilgrim.
Nov 11 '08 #11
Saii
145 Recognized Expert New Member
Which Oracle version are you using? In 10g you can use regular expressions
Nov 14 '08 #12

Sign in to post your reply or Sign up for a free account.

Similar topics

10
8325
by: Wonderinguy | last post by:
I have a table with data stored on upper case. I would like to change it proper mixed case. For example : change data from , THIS IS A TEST to This is a test or This Is A Test. Is there any easy...
46
2656
by: James Harris | last post by:
Before I embark on a new long-term project I'd appreciate your advice on how to split up long names. I would like to keep the standards for command names the same as that for variable names....
7
3509
by: Bernard Lebel | last post by:
Hello, I'm stumbled at a serious problem, and quite frankly getting desparate. This is a rather long-winded one so I'll try to get straight to the point. I have this Python program, that...
7
3165
by: Jim Carlock | last post by:
Looking for suggestions on how to handle bad words that might get passed in through $_GET variables. My first thoughts included using str_replace() to strip out such content, but then one ends...
4
10258
by: natG | last post by:
Hi; I am transferring data from MySql to db2 using my own java/jdbc program. Working out ok, except for the fact that our apps use mixed-case names for tables and columns. Although my CREATE TABLE...
8
6378
by: sara | last post by:
I have a table where a few of the users entered vendor names ALL IN UPPER CASE. I have created forms to edit the data, but I can't seem to allow changing JOE SMITH to Joe Smith. What to I have...
9
1874
by: s0suk3 | last post by:
I'm totally new to C, so this is a question from a total newbie. I know most people write the names in C with underscores, as_in_this_name. But... is it also customary to write them in mixed case,...
0
7132
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7009
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7223
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5475
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4602
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3094
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1427
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
665
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
302
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.