Rails 中是否可以对存在但没有模式的表执行查询?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实愿意,可以执行手动 sql 查询,如下所示:
If you really want to you can execute manual sql queries as follows: