sql server 两个表中相同字段的相减,实现的功能类似于进货表中的进货数

量减去销售表的销售数量,求出剩余数量
2024-12-13 00:30:40
推荐回答(1个)
回答1:

create table a --进货表
(id number,--货物ID
a1 number); --进货数量
create table b --销售表
(id number,,--货物ID
b1 number);--销售数量
select a.a1-b.b1 from a inner join b on a.id=b.id