MS SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesMS SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 24th, 2003, 07:52 PM
rizzo rizzo is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 7 rizzo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question need help with query!

Hi, this is my second day SQLing and I have been watching your form and was hoping someone could help me with a query.

I can do the query I need on a simple table....

(example table)
name num
---------------
a 1
a 2
a 3
b 3
b 6

SELECT DISTINCT name, MAX(num)
FROM dbo.testtable
GROUP BY name

the above query returns;
a 3
b 6

SOOO, below is the query I currently have and need to add the MAX funtionality.
I think I need to use the MAX and DISTINCT functions to filter the display with the following fields DISTINCT(dbo.ScanMachines.smachName) and MAX(dbo.Scans.ScanID). So if the query below was called 'MYQUERY'


what i am trying to achieve would be the result of this...err if it worked. /


SELECT *
FROM myquery
WHERE (smachName, ScanID IN
(SELECT DISTINCT smachName, MAX(ScanID)
FROM myquery
GROUP BY smachName))


--------------------
--- MY QUERY ---
--------------------
SELECT dbo.Scans.ScanDate, dbo.Scans.ScanID, dbo.ScanMachines.smachName, dbo.ScanMachines.smachIPAddress,
dbo.Products.prodName, dbo.Patches.patchQNumbers, dbo.ScanItems.itemType, dbo.Patches.patchBulletinID, dbo.LinkSPProduct.spplOrdinal,
dbo.ItemTypes.itName
FROM dbo.Products INNER JOIN
dbo.Scans INNER JOIN
dbo.ScanMachines ON dbo.Scans.ScanID = dbo.ScanMachines.smachScanID INNER JOIN
dbo.LinkPatchProduct INNER JOIN
dbo.Patches ON dbo.LinkPatchProduct.pspplpatchID = dbo.Patches.patchID INNER JOIN
dbo.LinkSPProduct ON dbo.LinkPatchProduct.pspplspplID = dbo.LinkSPProduct.spplID ON
dbo.ScanMachines.smachOSID = dbo.LinkSPProduct.spplID ON dbo.Products.prodID = dbo.LinkSPProduct.spplprodID INNER JOIN
dbo.ScanItems ON dbo.Scans.ScanID = dbo.ScanItems.itemScanID AND dbo.ScanMachines.smachID = dbo.ScanItems.itemMachineID AND
dbo.LinkPatchProduct.pspplID = dbo.ScanItems.itempspplID AND dbo.LinkSPProduct.spplID = dbo.ScanItems.itemspplID INNER JOIN
dbo.ItemTypes ON dbo.ScanItems.itemType = dbo.ItemTypes.itKey
ORDER BY dbo.ScanMachines.smachName, dbo.Patches.patchQNumbers


Any ideas?

Thanks!

da rizzo

Last edited by rizzo : November 25th, 2003 at 10:41 AM.

Reply With Quote
  #2  
Old November 25th, 2003, 03:50 AM
swampBoogie swampBoogie is offline
Contributing User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2003
Location: Paris Uppland
Posts: 2,349 swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 4 Days 7 h 17 m 46 sec
Reputation Power: 390
Code:
SELECT *
FROM myquery join 
(SELECT smachName x, MAX(ScanID) y
FROM myquery
GROUP BY smachName) dt
on smachName = x
and  ScanID = y

Reply With Quote
  #3  
Old November 25th, 2003, 10:43 AM
rizzo rizzo is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 7 rizzo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks! I'll play with that.

Also, I think I may need the DISTINCT function?

Reply With Quote
  #4  
Old November 25th, 2003, 11:28 AM
rizzo rizzo is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 7 rizzo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
DUDE U ROCK!!!

Here's how it was cooked!!!!

SELECT *
FROM dbo.ReportPatchesbyServerV INNER JOIN
(SELECT DISTINCT smachName x, MAX(ScanID) y
FROM dbo.ReportPatchesbyServerV
GROUP BY smachName) dt ON dbo.ReportPatchesbyServerV.smachName = dt.x AND dbo.ReportPatchesbyServerV.ScanID = dt.y

THANKS AGAIN!!!

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMS SQL Development > need help with query!

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap