2017-07-13 157 views
0

多熱膨脹係數,我有以下格式的SQL查詢:與阿雷爾

with from as (#{select * query}), 
to as (#{another select *}), 
rates as (#{yet another select *}) 
select rates.* from rates, from, to 
where rates.from_id = from.id and rates.to_id = to.id 

我怎樣才能將它轉換爲阿雷爾?我研究了Arel CTE,但是沒有使用上面查詢中的多個別名的例子。

+1

如果您的用例支持它,您可以考慮使用視圖。甚至有一個[圖書館可以像Thoughtbot的模型一樣處理視圖](https://github.com/thoughtbot/scenic)。 – coreyward

回答

3

這應該做的伎倆:

from_table = Arel::Table.new(:from) 
to_table = Arel::Table.new(:to) 
rates_table = Arel::Table.new(:rates) 
query = rates_table. 
    join(from_table).on(rates_table[:from_id].eq(from_table[:id])). 
    join(to_table).on(rates_table[:to_id].eq(to_table[:id])). 
    project(rates_table[Arel.star]). 
    with([ 
    Arel::Nodes::As.new(from_table, Arel::Nodes::SqlLiteral.new("select * query")), 
    Arel::Nodes::As.new(to_table, Arel::Nodes::SqlLiteral.new("another select *")), 
    Arel::Nodes::As.new(rates_table, Arel::Nodes::SqlLiteral.new("yet another select *")), 
    ]) 
puts query.to_sql 

此時應更換Arel::Nodes::SqlLiteral.new("another select *")表達與實際阿雷爾查詢。要從ActiveRecord關係中獲取Arel查詢,可以在其上調用.ast。例如:User.where(active: true).ast

+0

我試過你的答案,唯一的問題是重新排序最後一部分。工作版本看起來像這樣https://gist.github.com/midhunkrishna/2adc07cd77002b5d49358ef69237b805 –