我在mysql中有两个表 第一是费用,第二是费用
我希望费用表减去费用表
我该怎么做才能帮我解决这个问题,谢谢
费用表
------------------------------
id | name | grn | fees|
------------------------------
expence table
------------------------------
id | invoice | amount
------------------------------
此表仅显示第一笔费用表的总和
// connect to the database
include('connect-db.php');
$sql = "select sum(fees) from fees";
$q = mysql_query($sql);
$row = mysql_fetch_array($q);
echo 'Sum: ' . $row[0];
这是这样的 23445 只有第一个表结果
and i want like this
23445 fees table result
- 3234 expense table result
------
20211 total income
------
答案 0 :(得分:1)
因此,将结果存储在一个变量中并减去它,简单地说,你可以做到这一点
$fees_amt = mysql_query($sql); //Returns say 10
$exp_amt = mysql_query($sql2); //Returns 5
$tot_amt = $fees_amt - $exp_amt;
echo $tot_amt;
答案 1 :(得分:1)
你走了:
// connect to the database
include('connect-db.php');
$sql = "select sum(fees) from fees";
$q = mysql_query($sql);
$fees = mysql_fetch_array($q);
$sql = "select sum(amount) from expence";
$q = mysql_query($sql);
$expense = mysql_fetch_array($q);
echo 'Fees: ' . $fees[0].'<br>';
echo 'Expenses: ' . $expense[0].'<br>';
echo 'Income: ' . ($fees[0] - $expense[0]) .'<br>';
注意:
不要使用mysql_ *系列函数,因为它们将被弃用。开始研究mysqli或pdo