我有以下场景:
Table 1 - Holds product meta data about products.
Table 2 - Holds sales data about the products.
每个表都有一个唯一的产品id,但是由于历史原因,表中的id是不同的。例如:
In Table 1, "Red Hat" -> 1
In Table 2, "Red Hat" -> 3.
我想将表2连接到表1,并根据产品idMap行。
有没有办法“Map”这些值,以便表2中id为3的所有行都Map到表1中id为1的所有行?
1条答案
按热度按时间pb3skfrl1#
使用
case
连接中的语句ON
用于Map的子句。演示。
准备表格:
连接用例:
结果: