怎样对MYSQL中的两列时间做减法?

怎样对MYSQL中的两列时间做减法?,第1张

--这样是显示的结果是差值总的秒数

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

--

1.select a.商品名,(a.入库数量-b.出库数量)。

2.as 剩余数量 from 入库表 a,出库表 b。

3.where a.商品名=b.商品名。

select Aa.Aamount -B.stock , B.bookidfrom (select sum(A.amount) as Aamount , A.bookid from group by A.bookid ) Aa inner join B on Aa.bookid =B.bookid

上述用的是sql2000 的语法。但都类似。


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存