0

我的 PHP-MSSQL 查询有问题。我有一个连接表,需要给出这样的结果:

    Department        Group A              Group B           Total A+B
                 WORKHOUR A OTHOUR A    WORKHOUR B OTHOUR B      WORKHOUR  OTHOUR
    HR             10         15     25   0               35       15
    IT              5          5                               5        5
    Admin                                    12   12              12       12

查询将计算每个给定日期有多少员工(管理员将输入数据,一旦提交,查询将给出上述结果)。

问题是,当没有要显示的行时,最终输出是一团糟。该列向右移动

即:只有 IT 中的 A 组 只有管理员中的 B 组

Department        Group A              Group B           Total A+B
             WORKHOUR A OTHOUR A WORKHOUR B OTHOUR B      WORKHOUR  OTHOUR
HR      10       15       25     0               35      15
IT       5        5        5         5
Admin   12       12       12        12

我的问题是,如何防止这种情况发生?我已经用 While.... if else.. 但结果仍然一样。 如果没有要返回的行,如何显示输出“0”? 回声“0”;

这是我的查询:

    select DD.DPT_ID,DPT.DEPARTMENT_NAME,TU.EMP_GROUP, sum(DD.WORK_HOUR) AS  WORK_HOUR,      
    sum(DD.OT_HOUR) AS OT_HOUR
    FROM DEPARTMENT_DETAIL DD
    left join DEPARTMENT DPT
    ON (DD.DEPT_ID=DPT.DEPT_ID)
    LEFT JOIN TBL_USERS TU
    ON (TU.EMP_ID=DD.EMP_ID) 
    WHERE DD_DATE>='2012-01-01'
    AND DD_DATE<='2012-01-31'
    AND TU.EMP_GROUP!=2
    GROUP BY DD.DEPT_ID, DPT.DEPARTMENT_NAME,TU.EMP_GROUP
    ORDER BY DPT.DEPARTMENT_NAME

这是我使用过的逻辑之一,但没有返回我想要的结果::

    while($row = mssql_fetch_array($displayResult))
{


if ((!$row["WORK_HOUR"])&&(!$row["OT_HOUR"]))

{
echo "<td >";
echo "empty";
echo "&nbsp;</td>";

echo "<td >";
echo "empty";
echo "&nbsp;</td>";

}
else 

{
echo "<td>";
echo $row["WORK_HOUR"];
echo "&nbsp;</td>";

echo "<td>";
echo $row["OT_HOUR"];
echo "&nbsp;</td>";

}



}

请帮忙。我已经这样做了2天。@__@

4

3 回答 3

1

我希望我没有误解你的问题。缺少某些行的原因是在某些情况下您甚至没有得到任何 tup。

例如,如果我有一个简单的表 t1(key1 varchar(200), key2 varchar(200), val integer),我写了一个查询select key1, key2, sum(val) from t1 group by key1, key2;

假设这些值是 -

apple week1 4
apple week2 5
pear  week1 3
pear  week1 3
apple week2 3
apple week2 4
apple week1 5

通过查询,我永远不会得到 (pear, week2) => 一些价值。

同样,您甚至可能不会触发条件检查,例如(!$row["WORK_HOUR"])&&(!$row["OT_HOUR"])

我希望下面的代码会有所帮助。

$results = array();

$allDepts = array();
$allGroups = array();

while($row = mssql_fetch_array($displayResult))
{
    $deptId = $row['DPT_ID'];
    $deptName = $row['DEPARTMENT_NAME'];
    $group = $row['EMP_GROUP'];
    $workHours = $row['WORK_HOUR'];
    $otHours = $row['OT_HOUR'];

    // set up a thorough list of depts & groups
    $allDepts[$deptId] = $deptName;
    $allGroups[$group] = $group;

    // store the values of hours
    $results[$deptId][$group]['work'] = $workHours;
    $results[$deptId][$group]['ot'] = $otHours;
}

// go through all possible combination of (dept, groups)
foreach($allDepts as $deptId => $deptName) {
    echo "<tr><td>$deptName</td>\n";
    foreach($allGroups as $group) {
        $workHours = $results[$deptId][$group]['work'];
        printTd($workHours);
        $otHours = $results[$deptId][$group]['ot'];
        printTd($otHours);
    }
    echo "</tr>\n";
}

function printTd( $value ) {
    $value = $value ? $value:"empty";
    echo "<td>$value</td>\n";
}
于 2012-06-21T12:26:10.637 回答
0
$arr = array();
while($r = mysql_fetch_assoc($rec))
{
   $arr[] = $r;
}

if(count($arr) == 0){
echo 0;
}else{
//do something else
}
于 2012-06-21T07:13:05.913 回答
0

唷。最后,使用@LiangLiang Zheng 的回答,我可以获得最后的总计以及每行的工作时间和加班时间(行中)。(说真的,我只知道基本的、简单的 PHP,并不真正知道如何使用数组等,所以我只编码我所知道的任何东西)。

我现在唯一需要做的就是显示每列的总计: A 组总工作时间、A 组加班时间总时间、B 组总工作时间、B 组加班时间总时间。(任何人都可以帮助我吗?)

无论如何,这里我如何获得每行/行的总工作时间和总加班时间以及工作时间和加班时间的最终总计(显示在表格底部):

    <?php

    $total_workhours=0;
    $total_ot=0;
    // go through all possible combination of (dept, groups)
    foreach($allDepts as $deptId => $deptName) {

    $dept_workhour=0;
$dept_ot=0;

    echo "<tr><td>$deptName</td>\n";

    foreach($allGroups as $group) 
{
    $workHours = $results[$deptId][$group]['work'];
    printTd($workHours);
    $otHours = $results[$deptId][$group]['ot'];
    printTd($otHours);

    $total_workhours+=$workHours;
    $total_ot+=$ot_hour;

            $dept_workhour +=$workHours;
    $dept_ot +=$ot_hour;

    }

echo "<td> $dept_workhour</td>\n";
echo "<td>$dept_ot</td>\n";
    echo "</tr>\n";
    }
    ?>
    <tr align="center">
    <td>TOTAL</td>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    <td ><?php echo $total_workhours; ?></td>
    <td><?php echo $total_ot; ?></td>
    </tr>

    <?php
    function printTd( $value ) {
    $value = $value ? $value:"empty";
    echo "<td>$value</td>\n";
    }
于 2012-06-24T05:02:05.040 回答