sql两张表,将符合条件的值相加

2025-04-14 04:50:55
推荐回答(1个)
回答1:

select sum(a.id,b.id) from a inner join b as a.id==b.id;