最佳时间相关连接架构

huangapple go评论84阅读模式
英文:

Optimal Time-Dependent Join Architecture

问题

我正在开发一个包含时间相关连接的数据流程。更具体地说,连接的结果将取决于底层表格中的日期字段之一。

根据表A中的日期值,R1可能在结果表格中映射到T1或T2。

我的问题是是否存在一种特定的架构或数据库可以高效处理这些类型的连接?

英文:

I am developing a pipeline that will contain time-dependent joins. More specifically, the result of a join will be dependent on a Date field in one of the underlying tables.

最佳时间相关连接架构
最佳时间相关连接架构
最佳时间相关连接架构

Depending on the date value in Table A, R1 may map T1 or T2 in the resulting table.

My question is whether there exists a specific architecture or database that can efficiently handle these types of joins?

答案1

得分: 1

创建一个整数列,作为日期的主键,或者创建一个日期表,其中整数是日期的主键。无论哪种方式,找出如何与整数进行连接都比与日期进行连接更理想。

英文:

Create an integer column that acts as a key for the date or create a date table where an integer is the primary key for the date. Either way, figuring out how to join to an integer would be more ideal than joining to a date.

huangapple
  • 本文由 发表于 2023年6月22日 00:42:13
  • 转载请务必保留本文链接:https://go.coder-hub.com/76525478.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定