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

SQL query


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

New User


Joined: 26 Oct 2005
Posts: 16

PostPosted: Fri Dec 16, 2005 3:41 pm
Reply with quote

I am having table(p) as follows and output given in table below that what is query to get that output.........?


p# pname color weight city

p1 Nut red 12 london
p2 Bolt green 17 paris
p3 Screw Blue 17 Rome
p4 Screw red 14 London
p5 Cam blue 12 paris
p6 Cog red 19 London


Output table is

weight pname

12 cam
nut
14 screw
17 bolt
screw
19 cog


Thanks in advance
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Fri Dec 16, 2005 5:19 pm
Reply with quote

Code:
SELECT PNAME, WEIGHT FROM <TABLE-NAME> WHERE 1 = 1                             
GROUP BY PNAME, WEIGHT HAVING COUNT(WEIGHT)>1; 


Try this & let me know the results....

Regards,

Priyesh.
Back to top
View user's profile Send private message
akashs

New User


Joined: 24 Nov 2005
Posts: 49
Location: chennai

PostPosted: Fri Dec 16, 2005 5:28 pm
Reply with quote

priyesh ,
iam unable to understand ur query ...wht is 1=1.expalin it plz...

regards,
akash
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Fri Dec 16, 2005 5:36 pm
Reply with quote

Quote:
wht is 1=1.expalin it plz...


It means always... icon_biggrin.gif

Regards,

Priyesh.
Back to top
View user's profile Send private message
reachsenthilnathan

New User


Joined: 20 Nov 2005
Posts: 15

PostPosted: Fri Dec 16, 2005 6:56 pm
Reply with quote

1=1 Is always true. It is required as you need to put a where condition in the query which has group by and having.

Please correct me if i am wrong.

With Regards,
Senthil Nathan.R
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 RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top