我是 PHP 的新手 我想知道如何创建一个计算百分比的 sql 语句 从我的数据库表中使用 PHP 。
示例是:我的数据库中的值是10000,我想得到它的0.50%
对此声明感到抱歉。我不知道技术术语。希望您能够帮助我。谢谢!
我不知道这是否正确。敬请谅解。 :d
这是我的代码:
<?
$result = mysql_query("SELECT * FROM tbl_payment where amount");
$num_total = ($amount / $num_percent) * 100;
echo $num_total;
?>
答案 0 :(得分:0)
错误
$result = mysql_query("SELECT * FROM tbl_payment where amount=10000");
while($row=mysql_fetch_array($result)){
$num_total = ($['your column name for computing %'] / $num_percent) * 100;
echo $num_total;
}