Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
SQL query

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
shri_shant

New User


Joined: 26 Oct 2005
Posts: 16

PostPosted: Fri Dec 16, 2005 3:41 pm    Post subject: SQL query
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
References
priyesh.agrawal

Global Moderator


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

PostPosted: Fri Dec 16, 2005 5:19 pm    Post subject: Re: SQL query
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: 9
Location: chennai

PostPosted: Fri Dec 16, 2005 5:28 pm    Post subject: Re: SQL query
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

Global Moderator


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

PostPosted: Fri Dec 16, 2005 5:36 pm    Post subject: Re: SQL query
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: 7

PostPosted: Fri Dec 16, 2005 6:56 pm    Post subject:
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
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1