我在 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 only 1st table 结果
and i want like this
23445 fees table result
- 3234 expense table result
------
20211 total income
------