如何从A表计算出的时间,去B表取对应的金额
可以举个例子,2个什么结构的表。别人才好回答。
让A表的时间和B表的时间做关联,然后再取B表的金额。
select 金额 from a,b where a.时间=b.时间
或
select 金额 from b where 时间 in (select 时间 from a)