有没有办法以所需的格式连接这两个表?

Is there a way to join these two tables in the desired format?

我正在尝试计算我的一些 opps 的利率,我的 tables 结构如下所示使用 SQL,我正在使用 redshift。

我是初学者,非常感谢任何线索,

这是按地区和日期划分的用户 table:

这是按地区和日期分类的利率:

您必须使用 JOIN - 详细了解不同类型的联接。 示例如何解决此问题:

Select ut.*
, ut.loan * ir.interest_rate
from
user_by_territory_Table as ut join
interest_Rate_table as ir 
on ut.territory = ir.territory
and ut.close_date = ir.close_date

您还可以使用 VIEWS 并创建一个新的虚拟 table(视图),这样会更有效率。使用视图,您还可以搜索和操作输出 table。 :)