Jump to content

COUNT and GROUP BY help


grandadevans

Recommended Posts

Hi all,
My head is about to explode. I have been trying to figure this out now for a few days.
The query below works fine but I have another field I need to add.
I have another table called click_log which logs the companyID clicked, what I need to do is add the number of cliks for that company to the query.
I have tried COUNT(click_log.companyID) in alsorts of variations but I cannot get it right.
Can anybody help. I have laid the code out as clear as I can below. If any more info is needed just give us a shout.
Cheers
[code]
SELECT
    bfpomerchants.companyID,
    bfpomerchants.company,
    bfpomerchants.cat1ID,
    bfpomerchants.cat2ID,
    bfpomerchants.cat3ID,
    DATE_FORMAT(bfpomerchants.date, '%%D %%b %%y') AS dateAdded,
    LEFT(bfpomerchants.`desc`, 100) AS short,
    bfpomerchants.URL,
    bfpomerchants.company,
    (SELECT bfpocats.cat FROM bfpocats WHERE bfpomerchants.cat1ID = bfpocats.catID ) AS cat1,
    (SELECT bfpocats.cat FROM bfpocats WHERE bfpomerchants.cat2ID = bfpocats.catID ) AS cat2,
    (SELECT bfpocats.cat FROM bfpocats WHERE bfpomerchants.cat3ID = bfpocats.catID ) AS cat3,
    (SELECT bfpocats.cat FROM bfpocats WHERE bfpomerchants.cat4ID = bfpocats.catID ) AS cat4
FROM
    bfpomerchants
WHERE
    (bfpomerchants.cat1ID = '%s') OR
    (bfpomerchants.cat2ID = '%s') OR
    (bfpomerchants.cat3ID = '%s') OR
    (bfpomerchants.cat4ID = '%s')
[/code]
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.