Jump to content

Query Help


julisana

Recommended Posts

Hi Guys!

 

This is probably something really simple, but I'm having some problems figuring out how best to write a particular query.

 

I've got two tables: 1 that has entries for when a certain process starts and stops for each company in our database (`stage`), and one that has all the queued up items that process has to take care of for each company (`queue` - each item is it's own row).

 

Right now the query tells me how many companies have been processing their queue since time X (let's say midnight)...

 

SELECT company_id, stage, time
FROM `stage`
WHERE time < %s AND stage != 'inactive'"

(the %s will contain the unix timestamp for Time X on the current day).

 

...but I'd like it also to tell me how many items it has left to process for each of those companies.

 

I thought about just adding a count() to the query, but that's not exactly going to return the results I want, since I'm not sure how to specify that I want it to pull the # of items for each individual company specified in the query above (found in table #2, `queue`).

 

`queue` contains the company_id value referenced in the stage table, so I'm assuming I'd need to do something with that to make sure I only got items pertaining to that company, but I"m not sure how. 

 

I don't know if I need to use a Join or a subquery or both or what.  Can someone point me in the right direction for how to do this all in one nice neat statement?

 

Thanks!

Link to comment
Share on other sites

Here are the fields in the two tables -

Tbl 1:

company_id, stage, time

 

tbl 2:

queue_id, company_id, data, random

 

Tbl 1 has 1 entry for each company in our database.  Each of those entries gets changed depending on whether the process is running or not.  (If it's not running, the value of stage is "inactive", if it is running, the value of stage could be "running" or "finishing"). 

Tbl 2 can have anywhere from 1 to n entries for any company in our database.

 

Does this information help?

Link to comment
Share on other sites

You're right, of course.

 

To get everything to work right, I had to put the table names in front of the fields since there was more than one table involved.  I got everything working, except for the fact that I specified tbl1 instead of tbl2 when defining the table in the GROUP BY clause.

 

Durrr to me!

 

Thanks for all the help guys, I really appreciate it!

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.