mysql - 一個計算php結果的問題。求大牛,求高手

來源:互聯網
上載者:User
//從part_time資料庫中尋找$sql="select * from part_time where agents=6";$result=mysql_query($sql);while($row=mysql_fetch_assoc($result)){    $id=$row['id'];//迴圈出所有agents=2的id        $resu="select count(*) from userinfo where part_person=$id";    $re=mysql_query($resu);    $roo=mysql_fetch_assoc($re);    $number= $roo['count(*)']; //計算出userinfo中是相同兼職人員(part_time)的人數    echo $number;    echo "----";}//現在需要把$number 相加得到最終的數字。應該怎麼做?求大牛解答

回複內容:

//從part_time資料庫中尋找$sql="select * from part_time where agents=6";$result=mysql_query($sql);while($row=mysql_fetch_assoc($result)){    $id=$row['id'];//迴圈出所有agents=2的id        $resu="select count(*) from userinfo where part_person=$id";    $re=mysql_query($resu);    $roo=mysql_fetch_assoc($re);    $number= $roo['count(*)']; //計算出userinfo中是相同兼職人員(part_time)的人數    echo $number;    echo "----";}//現在需要把$number 相加得到最終的數字。應該怎麼做?求大牛解答

while前面定義一個$number,然後直接$number+=$row['count(*)']即可。

另外我將代碼給你精簡了下。。。

$sql = 'select count(*) as total from userinfo where part_person IN (select id from part_time where agents = 6)';$result = mysql_query($sql);$row = mysql_fetch_assoc($result);echo $row['total'];

定義個$sum=0;
while中加上$sum+=$number

$number += $roo['count(*)'];

哇塞,迴圈語句裡你這樣反覆調用資料庫,訪問量大估計資料庫會受不了。可以使用join查詢。

試試 aggregate

$number += $roo['count(*)'];

不過這代碼有點。。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.