gpt4 book ai didi

mysql - 将 AR 模型与临时表连接起来

转载 作者:行者123 更新时间:2023-11-30 00:46:49 26 4
gpt4 key购买 nike

我使用了Temping gem为了创建临时表。

我需要加入我用 AR 模型创建的临时表。知道如何实现这一点吗?

这是原始 SQL 查询:

SELECT * FROM `example1` as t1 JOIN `example2` as t2 on t1.`book_name` = t2.`book_name` and t1.`author` = t2.`author` and t1.`date`= t2.`date`

在本例中,example1 是临时表(通过 temping gem 创建),示例 2 是实际的 AR 模型。

最佳答案

当 Temping 创建 AR 对象时,我想你可以使用类似的东西:

Example1.joins("example2 ON example1.book_name = example2.book_name ... etc").find_all

关于mysql - 将 AR 模型与临时表连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21296883/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com