作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我想在列表中搜索参数和顺序时出现此错误:
ERROR: invalid reference to FROM-clause entry for table "customers"
HINT: Perhaps you meant to reference the table alias "customers_contract_periods".
这是我在 rails 4.2.1 中的查询:在我这样做之前:
order = "CONCAT(customers.company_name, customers.last_name)"
和:
contract_periods = ContractPeriod.current
.joins( :contract, :customer )
.merge( Contract.search params[ :search ] )
.select( 'contract_periods.*' )
.where( filter_params )
.reorder( order, :start_on )
和:
contract_periods = contract_periods.merge ContractPeriod.by_state params[ :by_state ] if params[ :by_state ]
contract_periods = contract_periods.paginate( page: params[ :page ],
per_page: params[ :per_page ])
contracts = Contract.includes( :contract_type, :customer )
.where( id: contract_periods.map(&:contract_id) )
contract_types = contracts.map( &:contract_type ).uniq
customers = contracts.map( &:customer )
模型关联:
class Customer < ActiveRecord::Base
## Associations
belongs_to :billing_address, class_name: 'Address'
has_many :contacts, as: :contactable
has_many :contracts
class Contract < ActiveRecord::Base
belongs_to :contract_type
belongs_to :customer
has_many :contract_periods
class ContractPeriod < ActiveRecord::Base
## Associations
belongs_to :contract
has_one :customer, through: :contract
最佳答案
每当您在查询中引用任何关联表时,您都必须在代码末尾将其作为 .references(:contracts)
提及。
关于sql - 对表的 FROM 子句条目的引用无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30750960/
我是一名优秀的程序员,十分优秀!