Jump to content

Count, Sum ?. Stumped


rathgar

Recommended Posts

Hey Guys,

 

New guy here. Glad to be here :-).

 

I've been having a problem with what seems to be a simple sql query. There are two tables I'm comparing to find out how many times people from a group (in this sample millennium) have entered a entry into the job_id field. (Job ID could be say.. Marketing, or IT, or whatever)

 

The code below returns all the people in the group and all the entries, and even lists them in order, but all I need is a count per person of the entries, and not a list of them all.  I'm sure it's really simple. Just got me stumped.

 

SELECT * FROM `tbl_times` as A,`tbl_group_members` as B 
WHERE B.p_id = A.p_id
AND B.g_id = "millennium"
ORDER BY A.p_id,job_id DESC

 

What I need is:

Name, Job_Id, Entries

Joe Blogs, Accounting, 5

Joe Blogs, Marketing, 2

Sam French, Accounting, 5

Sam French, Marketing, 12

 

And so forth.

 

Thanks in advance guys,

 

Cheers,

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.