Jump to content

[SOLVED] GROUP BY - getting weird results...


acook

Recommended Posts

I am trying to execute the following query:

 

SELECT COUNT(Incident_Id), Assignee_Group_Counter FROM Incident_Management WHERE (Submitter = 'Me') GROUP BY Assignee_Group_Counter;

 

When I execute from the command line, this is what I get:

 

Count(Incident_Id)      |  Assignee_Group_Count

---------------------------------------------------------

                27            |                  1               

                  1            |                  2

 

That is perfect.  That's what I'm looking for.  However, when I try to output the results via PHP it's not showing correctly.  Here's my code:

 

<html>


<?php

set_time_limit(0);

$db_user = "";
$db_pass = "";
$dsn = "OPASRPT";

$conn = odbc_connect($dsn, '', '');


$query= "SELECT COUNT(Incident_Id), Assignee_Group_Counter FROM Incident_Management WHERE (Submitter = 'Me') GROUP BY Assignee_Group_Counter";


$result = odbc_exec($conn, $query);

$results_array = array();

while(odbc_fetch_row($result))
{
  $results_array[] = array(
  'Result' => odbc_result($result, 1),
  
  );
  

  }

foreach($results_array AS $this_row)



{

echo "{$this_row['Result']}<br><br>";

}


odbc_close($conn);
?>

 

The result I get is just

 

27

 

1

 

How can I make it look like the output at the command line?  Please help.

Link to comment
Share on other sites

Your making it harder than it needs to be by creating your own array to store the values in. Try it this way

 

<?php

while($row = odbc_fetch_row($result)){

   echo $row['num'] . ' - ' . $row['Assignee_Group_Counter'] . '<br>';
  
}

?>

 

Your going to need to change your query to this

SELECT COUNT(Incident_Id) as num, Assignee_Group_Counter FROM Incident_Management WHERE (Submitter = 'Me') GROUP BY Assignee_Group_Counter;

 

 

Link to comment
Share on other sites

try

<?php

set_time_limit(0);

$db_user = "";
$db_pass = "";
$dsn = "OPASRPT";

$conn = odbc_connect($dsn, '', '');


$query= "SELECT COUNT(Incident_Id), Assignee_Group_Counter FROM Incident_Management WHERE (Submitter = 'Me') GROUP BY Assignee_Group_Counter";


$result = odbc_exec($conn, $query);

$results_array = array();

while(odbc_fetch_into($result, $a))
{
    $results_array[] = $a;
}

foreach ($results_array as $a)
    echo "$a[0] | $a[1] <br/>";
?>

Link to comment
Share on other sites

I know this topic is solved...but one more quick question (rather than starting a new post):

 

Is it possible to get the TOTAL results from the array count (in this case it'd be 28)?

 

I tried:

 

echo "total = " . array_sum($a[1]) . "\n";

 

But I'm getting an empty value.  Is there an easier way?  I think also I'll eventually need the individual numbers (like 27 and 1) to make percentages.  For example:

 

1 / 28

27 / 28

 

Is that possible?

Link to comment
Share on other sites

array_sum only works on integers or floats values so lets try somethign

 

<?php
function non_numerical_array_sum($array){
if(is_array($array)){
   $total = 0;
   foreach($array as $value){
              $total = $total+floatval($value);
    }
   return $total;
}

non_numerical_array_sum($a);
?>

 

Try that

Link to comment
Share on other sites

Thanks!!  You did it again!  That seems like a much easier solution.  Now if I want to pull a certain number out of the array is that possible?  I know I saw it somewhere in the form of:

 

($a, 1)

 

 

..but it could have been different.  Is it possible?

Link to comment
Share on other sites

If I'd known where you were going my first solution would be different

<?php

set_time_limit(0);

$db_user = "";
$db_pass = "";
$dsn = "OPASRPT";

$conn = odbc_connect($dsn, '', '');
$query= "SELECT COUNT(Incident_Id), Assignee_Group_Counter FROM Incident_Management WHERE (Submitter = 'Me') GROUP BY Assignee_Group_Counter";

$result = odbc_exec($conn, $query);

$results_array = array();

while(odbc_fetch_into($result, $a))
{
    $results_array[$a[1]] = $a[0];                      // group is array key, count is the value
}

foreach ($results_array as $gp => $count)
{
    echo "$count | $gp <br/>";
}
$total=array_sum($results_array);                       // now it's a single dim array, you can array_sum it
echo $total;   
?>

 

Now if you want the total for group  2

<?php
$gp = 2;
echo $results_array[$gp];

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.