IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Extract records having Values in lower case for some columns


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
umed

New User


Joined: 13 May 2005
Posts: 38

PostPosted: Wed Oct 19, 2005 2:24 pm
Reply with quote

Hi,
can we extract records from db2 table having values in a perticular column in lower case?

If yes what is the query used for it?

regards,
amol
Back to top
View user's profile Send private message
balu_ver2k5

New User


Joined: 17 Oct 2005
Posts: 2

PostPosted: Wed Oct 19, 2005 4:44 pm
Reply with quote

Hi Umed

Example query

Select * from MASTER WHERE EMP_NAME=LCASE('UMED')


let me know if u cant understand
Back to top
View user's profile Send private message
swapnilverma

New User


Joined: 10 Oct 2005
Posts: 4
Location: bangalore,india

PostPosted: Wed Oct 19, 2005 4:51 pm
Reply with quote

Quote:
select ename from emp where upper(ename)=&ename;

or else

select ename from emp where ename=lower(&ename)


plz revert if its not work ......


Enjoy!!!! icon_biggrin.gif icon_wink.gif
Quote:
Back to top
View user's profile Send private message
umed

New User


Joined: 13 May 2005
Posts: 38

PostPosted: Wed Oct 19, 2005 5:08 pm
Reply with quote

Hi ,

Its not working. i m explaining the problen in details

suppose we have following table :

Name salary
------------ ----------------
amol 100
Umed 200
RAM 300
Mohan 400
Sham 200
JON 100

Here i need to extract following rows as they do not contain
all capital letters in Name column :

amol 100
Umed 200
Mohan 400
Sham 200

can we do this using a single Query.
We have to process thousands of such records.

regards,
Umed
Back to top
View user's profile Send private message
DavidatK

Active Member


Joined: 22 Nov 2005
Posts: 700
Location: Troy, Michigan USA

PostPosted: Fri Nov 25, 2005 6:42 am
Reply with quote

I?m sure you have already solved this, or no longer have the need.

SELECT NAME, SALARY
FROM EMP
WHERE NAME <> UCASE(NAME)

This should select any row where any character in name is not upper case
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
Search our Forums:

Back to Top