1.select a.商品名,(a.入库数量-b.出库数量)。
2.as 剩余数量 from 入库表 a,出库表 b。
3.where a.商品名=b.商品名。
--这样是显示的结果是差值总的秒数select sum(unix_timestamp(B)-unix_timestamp(A)) as 秒数
from tb
--这样是显示成 xxx:xx:xx 的形式
select sec_to_time(sum(unix_timestamp(B)-unix_timestamp(A))) as ti
from tb
--
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)