Rails 中是否可以对存在但没有模式的表执行查询?

发布于 2024-10-30 04:45:33 字数 238 浏览 3 评论 0原文

Rails 在这种关系中自动生成了一个连接表:

# User.rb
has_and_belongs_to :topics

# Topic.rb
has_and_belongs_to :users

我想直接查询连接表 topics_users 以获取 ID。

我认为这种策略从主题获取用户 ID 是最快的,而不是查找连接表、查找用户并从用户获取 ID。

Rails auto-generated a join table in this relationship :

# User.rb
has_and_belongs_to :topics

# Topic.rb
has_and_belongs_to :users

I want to query the join table, topics_users directly for a to obtain an ID's.

This strategy I feel would be the fastest at getting the User ID's from the Topics, rather than looking up the Join Table, looking up the Users, and Getting the ID's from the users.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿嘿嘿 2024-11-06 04:45:33

如果您确实愿意,可以执行手动 sql 查询,如下所示:

ActiveRecord::Base.connection.execute("SELECT id FROM users_topics WHERE etc")

If you really want to you can execute manual sql queries as follows:

ActiveRecord::Base.connection.execute("SELECT id FROM users_topics WHERE etc")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文