If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > VBScript - Database - General - Record Count based on a specific field ID

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-22-11, 02:47
veggiop veggiop is offline
Registered User
 
Join Date: Mar 2011
Posts: 10
VBScript - Database - General - Record Count based on a specific field ID

I have created a table which logs a number of downloads for specific documents:
DownloadID DownloadDate DocumentID

I want to be able to list a count of all the Downloads by documentID

So if DocumentID '3' has had a downloadID record created 3 times it shows 3 and so on. I can get it so I have a total record count but I want to break the count down via DocumentID. Solutions would be greatly appreciated.
Reply With Quote
  #2 (permalink)  
Old 06-22-11, 07:48
myle myle is offline
(Making Your Life Easy)
 
Join Date: Feb 2004
Location: New Zealand
Posts: 1,143
Here

SELECT DownLoad.DocumentID, Count(DownLoad.DownLoadID) AS CC
FROM DownLoad
GROUP BY DownLoad.DocumentID;

CC will hold the count of the DocumnetID
__________________
hope this help

See clear as mud


StePhan McKillen
the aim is store once, not store multiple times
Remember... Optimize 'til you die!
Progaming environment:
Access based on my own environment: DAO3.6/A97/A2000/A2003
VB based on my own environment: vb6 sp5
ASP based on my own environment: 5.6
VB-NET based on my own environment started 2007
SQL-2005 based on my own environment started 2008
MYLE
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On