php+mysql中有求乘积函数吗? 我这样写怎么没有用呢?

php+mysql中有求乘积函数吗? 我这样写怎么没有用呢?,第1张

这样当然不行了。$r是一个数组型的变量,你用print_r($r)就能看出来。要显示结果还需要建立一个循环:

<?

$query="select (orderqty * uitprice) as result from info "

$re = mysql_query($query)

while($r = mysql_fetch_array($re))

{

echo ($r["result"])

}

?>

create procedure jiecheng3(in num integer)

begin

declare i int default 1

declare sum int default 1

while i <= num

do

set sum = sum*i

set i = i+1

end while

select sum

end

直接 call jiecheng3(2)就OK

select 供应商名称,表二.所订产品,

case 表二.所订产品 when '产品一' then 产品一价格*数量

when '产品二' then 产品二价格*数量

when '产品三' then 产品三价格*数量

end as 应付款

from 表一 join 表二

on 表一.供应商名称=表二.供应商名称


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7559485.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-07
下一篇 2023-04-07

发表评论

登录后才能评论

评论列表(0条)

保存