英文:
Does DB2 Support temporal tables join and aggregation?
问题
DB2是否支持在时间字段上对这种类型的表进行时态连接?
英文:
I am looking for a resource which indicates whether Db2 on Ubuntu supports temporal tables join and aggregation or not.
Example:
customer (
customer_id ,
name ,
address ,
valid_period ,
tx_period
);
orders (
order_id ,
customer_id,
order_total,
valid_period ,
tx_period
);
Does DB2 support temporal join for these kind of tables on period fields?
答案1
得分: 1
Db2文档中提供了有关系统时间周期表的限制信息。这些限制也适用于双时态表。接下来,查看查询双时态表。它结合了应用时间段和系统时间段上的谓词。
英文:
The Db2 documentation has information on restrictions for system-period temporal tables. They also apply for bi-temporal tables. Next, look at querying bi-temporal tables. It is combining predicates on application periods and system periods.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论