0

我是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;
?>
4

1 回答 1

0

你的sql语法错误

$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; 
}
于 2013-09-02T20:29:38.260 回答