【问题标题】:Dynamic rowspan while fetching records from database从数据库中获取记录时的动态行跨度
【发布时间】:2011-05-30 07:34:14
【问题描述】:
Ename   Sal      
tom     100
tom     200
bill    100
bill    250
bill    450
bill    400

这是给出上述输出的查询和 html 结构。

<?php 
$sql = "select * from emp ";
$result= mysql_query($sql);
while($row=mysql_fetch_array($result))
{
  <tr >
    <td rowspan=""  ><?php echo $row['ename']; ?></td>
    <td><?php echo $row['esal']?></td>
  </tr>
  <? }?>

我怎样才能得到以下输出:

Ename   Sal      
tom     100
        200
bill    100
        250
        450
        400

【问题讨论】:

  • 您能否提供您当前的代码以便我们可以使用?

标签: php mysql


【解决方案1】:

对不起我糟糕的英语: 在这里,我已经回答了这个问题How to show data from database with dynamic rowspan。让我再次尝试回答这个问题。首先让我们处理 mysql 查询。

MySql 工作:

在 mysql 查询中,您没有查询 order by。因为在现实生活中,你不能指望在所有的汤姆、账单记录之后。比如下面的插入。

INSERT INTO test_work(ename, sal) 
               VALUES("tom",  100), 
                     ("bill", 450), 
                     ("bill", 100), 
                     ("tom",  200),
                     ("bill", 250),
                     ("bill", 400),
                     ("James", 50);
SELECT * FROM test_work;

结果:

+-------+------+
| ename | sal  |
+-------+------+
| tom   |  100 |
| bill  |  450 |
| bill  |  100 |
| tom   |  200 |
| bill  |  250 |
| bill  |  400 |
| James |   50 |
+-------+------+

所以你的 mysql 查询应该按 ename 排序。在这里,每个人的 sal 也应该是 ordred 。所以我们的查询:

SELECT * FROM emp ORDER BY ename, sal;

编码:

  1. 整个任务我们可以分为三个部分。
    1. Mysql 数据获取并存储在数组中。
    2. 计算行跨度
    3. 打印

MySql 数据获取:

在从 mysql 服务器获取数据期间,我们应该尝试使用 mysql_fetch_assoc 函数而不是 mysql_fetch_array 。因为 mysql_fetch_assoc 将只返回 ename 和 sal。但是 mysql_fetch_array 将返回索引为 ename、sal、0、1 的数组。

    # connect to mysql server
    # and select the database, on which
    # we will work.
    $conn = mysql_connect('', 'root', '');
    $db   = mysql_select_db('test');

    # Query the data from database.
    $query  = 'SELECT * FROM test_work ORDER BY ename, sal';
    $result = mysql_query($query);

    # Intialize the array, which will 
    # store the fetched data.
    $sal = array();
    $emp = array();

    # Loop over all the fetched data, and save the
    # data in array.
    while($row = mysql_fetch_assoc($result)) {
        array_push($emp, $row['ename']);
        array_push($sal, $row['sal']);
    }

计算行跨度:

    # Intialize the array, which will store the 
    # rowspan for the user.
    $arr = array();

    # loop over all the sal array
    for ($i = 0; $i < sizeof($sal); $i++) {
        $empName = $emp[$i];

        # If there is no array for the employee
        # then create a elemnt.
        if (!isset($arr[$empName])) {
            $arr[$empName] = array();
            $arr[$empName]['rowspan'] = 0;
        }

        $arr[$empName]['printed'] = "no";

        # Increment the row span value.
        $arr[$empName]['rowspan'] += 1;
    }

当您打印 arr 数组时,输出将是:

Array
(
    [bill] => Array
        (
            [rowspan] => 4
            [printed] => no
        )

    [James] => Array
        (
            [rowspan] => 1
            [printed] => no
        )

    [tom] => Array
        (
            [rowspan] => 2
            [printed] => no
        )

)

使用行跨度打印:

    echo "<table cellspacing='0' cellpadding='0'>
            <tr>
                <th>Ename</th>
                <th>Sal</th>
            </tr>";


    for($i=0; $i < sizeof($sal); $i++) {
        $empName = $emp[$i];
        echo "<tr>";

        # If this row is not printed then print.
        # and make the printed value to "yes", so that
        # next time it will not printed.
        if ($arr[$empName]['printed'] == 'no') {
            echo "<td rowspan='".$arr[$empName]['rowspan']."'>".$empName."</td>";
            $arr[$empName]['printed'] = 'yes';
        }
        echo "<td>".$sal[$i]."</td>";
        echo "</tr>";
    }
    echo "</table>";

代码优化:

现在我们可以结合rowspan计算和mysql数据获取。因为在将获取的数据保存在数组中的过程中,我们可以计算行跨度。所以我们的最终代码:

<!DOCTYPE html>
<html>
    <head>
        <style>
            table tr td, table tr th{
                border: black 1px solid;
                padding: 5px;
            }
        </style>
    </head>
    <body>
        <?php
        # connect to mysql server
        # and select the database, on which
        # we will work.
        $conn = mysql_connect('', 'root', '');
        $db   = mysql_select_db('test');

        # Query the data from database.
        $query  = 'SELECT * FROM test_work ORDER BY ename, sal';
        $result = mysql_query($query);

        # $arr is array which will be help ful during 
        # printing
        $arr = array();

        # Intialize the array, which will 
        # store the fetched data.
        $sal = array();
        $emp = array();

        #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
        #     data saving and rowspan calculation        #
        #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#

        # Loop over all the fetched data, and save the
        # data.
        while($row = mysql_fetch_assoc($result)) {
            array_push($emp, $row['ename']);
            array_push($sal, $row['sal']);

            if (!isset($arr[$row['ename']])) {
                $arr[$row['ename']]['rowspan'] = 0;
            }
            $arr[$row['ename']]['printed'] = 'no';
            $arr[$row['ename']]['rowspan'] += 1;
        }


        #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
        #        DATA PRINTING             #
        #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
        echo "<table cellspacing='0' cellpadding='0'>
                <tr>
                    <th>Ename</th>
                    <th>Sal</th>
                </tr>";


        for($i=0; $i < sizeof($sal); $i++) {
            $empName = $emp[$i];
            echo "<tr>";

            # If this row is not printed then print.
            # and make the printed value to "yes", so that
            # next time it will not printed.
            if ($arr[$empName]['printed'] == 'no') {
                echo "<td rowspan='".$arr[$empName]['rowspan']."'>".$empName."</td>";
                $arr[$empName]['printed'] = 'yes';
            }
            echo "<td>".$sal[$i]."</td>";
            echo "</tr>";
        }
        echo "</table>";
        ?>
    </body>
</html>

结果:

【讨论】:

    【解决方案2】:

    这样的?

    While data
     echo
       <tr>
            <td rowspan="3"><p>numbers</p></td>
            <td><p>1</p></td>
            <td><p>2</p></td>
     </tr>
    

    请发布您的代码

    【讨论】:

      【解决方案3】:

      您可以像这样检查最后一行和当前行的条件。

      $sql = "select * from emp";
      $result= mysql_query($sql);
      echo "<table>";
      while($row=mysql_fetch_array($result))
      { 
        $now=$row[0];
        if($last!=$now) {
        echo "<tr><td>$row['ename']</td><td>$row['esal']</td></tr>";
        }else{
        echo "<tr><td>&nbsp;</td><td>$row['esal']</td></tr>";
        }
        $last = $row[0];
       }
      echo "</table>";
      

      希望对你有帮助。

      【讨论】:

      • 此代码按预期工作order by Ename 需要在 sql 查询中
      【解决方案4】:

      应该是这样的

      <?php 
          $sql = "SELECT * FROM emp ";
          $result= mysql_query($sql);
          while($row=mysql_fetch_array($result)):
            $ename = $row['ename'];
      
            // count the esal in each ename
            $sql2 = "SELECT * FROM emp WHERE ename=$ename";
            $result2 = mysql_query($sql2);
            $count_result2 = mysql_num_rows($result2);
      
          ?>
            <tr >
              <td rowspan="<?php echo $count_result2; ?>"><?php echo $row['ename']; ?></td>
              <?php
                // loop each esal
                while($row2 = mysql_fetch_array($result2)):
                ?>
                    <td><?php echo $row['esal']; ?></td>
                  </tr>
                <?php
                endwhile; // endwhile for each esal looping
          endwhile; // endwhile for the main looping
          ?>
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2015-11-20
        • 1970-01-01
        • 2011-05-29
        • 2013-01-27
        • 1970-01-01
        • 2012-12-06
        • 1970-01-01
        • 2011-10-18
        相关资源
        最近更新 更多