Jump to content

group by problem....


anujgarg

Recommended Posts

I have a table structure:

 

id  comp_name

1      a

2      a

3      a

4      b

5      b

6      a

 

1) Now, I am running a query which returns the company name and total number of companies with same name in group by clause ie a(4) and b(2).

 

2) what I want to do is, to get the individual IDs corresponding to each company name or comma separated ie a (4) - 1,2,3,6

and b(2) - 4,5

 

I have covered the step 1) but how do I cover the step 2).

All I am getting is the same IDs in both cases:

ie a(4) - 1,2,3,4,5,6

b(2) - 1,2,3,4,5,6

 

How to solve this problem?

 

TIA

Link to comment
Share on other sites

sasa, I applied your query and I found the following:

 

 

company_name num ids

                    2 [bLOB - 5 B]

grger                 1    [bLOB - 2 B]

xgfdg                 3    [bLOB - 8 B]

xgfdgdfdfdf       1    [bLOB - 2 B]

 

how do i get the numeric values in ids....

Link to comment
Share on other sites

Stryves

 

This is also not what I need.

I give you the statements what I am writing:

 

SELECT *, count(*) as count FROM table GROUP BY comp_name

 

foreach ($agentList->result() as $search)

{

    echo "<tr><td><strong>".$search->id . $search->comp_name. search->count</strong></td></tr>";

echo "<tr><td> </td></tr>";

}

 

SELECT id FROM table

 

foreach ($agentId->result() as $searchId)

{

$jobId .= $searchId->jobs_id . ",";

}

 

The first query returns a(4) and b(2) as per my example.

The second query returns 1,2,3,4,5,6 in both cases which I need with their corresponding names and Ids.

 

 

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.