1. <tfoot id='0Z4Fp'></tfoot>

      2. <i id='0Z4Fp'><tr id='0Z4Fp'><dt id='0Z4Fp'><q id='0Z4Fp'><span id='0Z4Fp'><b id='0Z4Fp'><form id='0Z4Fp'><ins id='0Z4Fp'></ins><ul id='0Z4Fp'></ul><sub id='0Z4Fp'></sub></form><legend id='0Z4Fp'></legend><bdo id='0Z4Fp'><pre id='0Z4Fp'><center id='0Z4Fp'></center></pre></bdo></b><th id='0Z4Fp'></th></span></q></dt></tr></i><div id='0Z4Fp'><tfoot id='0Z4Fp'></tfoot><dl id='0Z4Fp'><fieldset id='0Z4Fp'></fieldset></dl></div>

        <small id='0Z4Fp'></small><noframes id='0Z4Fp'>

          <bdo id='0Z4Fp'></bdo><ul id='0Z4Fp'></ul>
        <legend id='0Z4Fp'><style id='0Z4Fp'><dir id='0Z4Fp'><q id='0Z4Fp'></q></dir></style></legend>

        使用 MySQLi 的 SUM 的单个结果

        时间:2023-07-30

            • <small id='bgjuc'></small><noframes id='bgjuc'>

                <bdo id='bgjuc'></bdo><ul id='bgjuc'></ul>
                <tfoot id='bgjuc'></tfoot>
                  <tbody id='bgjuc'></tbody>

                <i id='bgjuc'><tr id='bgjuc'><dt id='bgjuc'><q id='bgjuc'><span id='bgjuc'><b id='bgjuc'><form id='bgjuc'><ins id='bgjuc'></ins><ul id='bgjuc'></ul><sub id='bgjuc'></sub></form><legend id='bgjuc'></legend><bdo id='bgjuc'><pre id='bgjuc'><center id='bgjuc'></center></pre></bdo></b><th id='bgjuc'></th></span></q></dt></tr></i><div id='bgjuc'><tfoot id='bgjuc'></tfoot><dl id='bgjuc'><fieldset id='bgjuc'></fieldset></dl></div>
                <legend id='bgjuc'><style id='bgjuc'><dir id='bgjuc'><q id='bgjuc'></q></dir></style></legend>

                1. 本文介绍了使用 MySQLi 的 SUM 的单个结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  看遍了.找不到答案.PHP 文档不清楚(对我来说).

                  Looked all over. Can't find an answer. PHP docs not clear (to me).

                  我正在通过 mysqli->query 做一个简单的 MySQL 求和.如何使用 MySQLi 获得结果,例如 mysql_result?

                  I'm doing a simple MySQL sum through mysqli->query. How can I get the result with MySQLi like mysql_result?

                  推荐答案

                  在 SELECT 语句中给 mysqli_query 的任何内容都将返回一个 mysql_result 类型,如果查询成功.因此,如果您有一个 SELECT 语句,例如:

                  Whatever is given in the SELECT statement to mysqli_query is going to return a mysql_result type if the query was successful. So if you have a SELECT statement such as:

                  SELECT sum(field) FROM table1
                  

                  您仍然需要获取带有结果的行,并且 sum() 函数的值将是行数组中的唯一条目:

                  you still need to fetch the row with the result, and the value of the sum() function will be the only entry in the row array:

                  $res = mysqli_query($dbh,'SELECT sum(field) FROM table1');
                  $row = mysqli_fetch_row($res);
                  $sum = $row[0];
                  

                  这篇关于使用 MySQLi 的 SUM 的单个结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何使用 MySQLi 在 PHP 中获取数据? 下一篇:mysqli 插入错误不正确的语法

                  相关文章

                  最新文章

                    <bdo id='AizcM'></bdo><ul id='AizcM'></ul>

                  <small id='AizcM'></small><noframes id='AizcM'>

                  1. <legend id='AizcM'><style id='AizcM'><dir id='AizcM'><q id='AizcM'></q></dir></style></legend>
                      <tfoot id='AizcM'></tfoot>
                    1. <i id='AizcM'><tr id='AizcM'><dt id='AizcM'><q id='AizcM'><span id='AizcM'><b id='AizcM'><form id='AizcM'><ins id='AizcM'></ins><ul id='AizcM'></ul><sub id='AizcM'></sub></form><legend id='AizcM'></legend><bdo id='AizcM'><pre id='AizcM'><center id='AizcM'></center></pre></bdo></b><th id='AizcM'></th></span></q></dt></tr></i><div id='AizcM'><tfoot id='AizcM'></tfoot><dl id='AizcM'><fieldset id='AizcM'></fieldset></dl></div>