2015-09-01 11:20:19 -04:00
# Arel
2010-09-24 19:45:02 -04:00
* http://github.com/rails/arel
## DESCRIPTION
2008-02-23 19:49:49 -05:00
2014-02-18 17:45:40 -05:00
Arel Really Exasperates Logicians
2011-04-11 12:47:47 -04:00
Arel is a SQL AST manager for Ruby. It
2011-11-10 15:02:40 -05:00
1. Simplifies the generation of complex SQL queries
2013-12-04 20:25:42 -05:00
2. Adapts to various RDBMSes
2011-04-11 12:47:47 -04:00
It is intended to be a framework framework; that is, you can build your own ORM
with it, focusing on innovative object and collection modeling as opposed to
database compatibility and query generation.
2008-02-23 19:49:49 -05:00
2010-09-24 19:45:02 -04:00
## Status
2008-05-19 16:49:43 -04:00
2013-04-14 14:39:07 -04:00
For the moment, Arel uses Active Record's connection adapters to connect to the various engines, connection pooling, perform quoting, and do type conversion.
2008-05-19 16:49:43 -04:00
2010-09-24 19:45:02 -04:00
## A Gentle Introduction
2008-02-23 19:49:49 -05:00
2013-04-14 14:45:31 -04:00
Generating a query with Arel is simple. For example, in order to produce
2008-02-23 19:49:49 -05:00
2013-06-27 12:11:25 -04:00
```sql
SELECT * FROM users
```
2009-08-23 16:24:59 -04:00
2008-02-23 19:49:49 -05:00
you construct a table relation and convert it to sql:
2013-06-27 12:11:25 -04:00
```ruby
users = Arel::Table.new(:users)
query = users.project(Arel.sql('*'))
query.to_sql
```
2009-08-23 16:24:59 -04:00
2010-09-24 19:45:02 -04:00
### More Sophisticated Queries
2008-05-19 16:49:43 -04:00
2014-02-18 17:45:40 -05:00
Here is a whirlwind tour through the most common SQL operators. These will probably cover 80% of all interaction with the database.
2008-02-23 19:49:49 -05:00
2008-05-19 16:49:43 -04:00
First is the 'restriction' operator, `where` :
2008-02-23 19:49:49 -05:00
2013-06-27 12:11:25 -04:00
```ruby
users.where(users[:name].eq('amy'))
# => SELECT * FROM users WHERE users.name = 'amy'
```
2008-05-19 16:49:43 -04:00
What would, in SQL, be part of the `SELECT` clause is called in Arel a `projection` :
2013-06-27 12:11:25 -04:00
```ruby
users.project(users[:id])
# => SELECT users.id FROM users
```
2009-08-23 16:24:59 -04:00
2014-05-02 14:56:24 -04:00
Comparison operators `=` , `!=` , `<` , `>` , `<=` , `>=` , `IN` :
```ruby
users.where(users[:age].eq(10)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" = 10
users.where(users[:age].not_eq(10)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" != 10
users.where(users[:age].lt(10)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" < 10
users.where(users[:age].gt(10)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" > 10
users.where(users[:age].lteq(10)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" < = 10
users.where(users[:age].gteq(10)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" >= 10
users.where(users[:age].in([20, 16, 17])).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE "users"."age" IN (20, 16, 17)
```
2015-12-10 16:50:28 -05:00
Bitwise operators `&` , `|` , `^` , `<<` , `>>` :
```ruby
users.where((users[:bitmap] & 16).gt(0)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE ("users"."bitmap" & 16) > 0
users.where((users[:bitmap] | 16).gt(0)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE ("users"."bitmap" | 16) > 0
users.where((users[:bitmap] ^ 16).gt(0)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE ("users"."bitmap" ^ 16) > 0
users.where((users[:bitmap] < < 1 ) . gt ( 0 ) ) . project ( Arel . sql ( ' * ' ) ) # = > SELECT * FROM "users" WHERE ("users"."bitmap" < < 1 ) > 0
users.where((users[:bitmap] >> 1).gt(0)).project(Arel.sql('*')) # => SELECT * FROM "users" WHERE ("users"."bitmap" >> 1) > 0
users.where((~ users[:bitmap]).gt(0)).project(Arel.sql('*')) # => SELECT FROM "users" WHERE ~ "users"."bitmap" > 0
```
2008-05-19 16:49:43 -04:00
Joins resemble SQL strongly:
2013-06-27 12:11:25 -04:00
```ruby
users.join(photos).on(users[:id].eq(photos[:user_id]))
# => SELECT * FROM users INNER JOIN photos ON users.id = photos.user_id
```
2008-05-19 16:49:43 -04:00
2014-05-02 14:56:24 -04:00
Left Joins
```ruby
users.join(photos, Arel::Nodes::OuterJoin).on(users[:id].eq(photos[:user_id]))
# => SELECT FROM users LEFT OUTER JOIN photos ON users.id = photos.user_id
```
2008-05-19 16:49:43 -04:00
What are called `LIMIT` and `OFFSET` in SQL are called `take` and `skip` in Arel:
2013-06-27 12:11:25 -04:00
```ruby
users.take(5) # => SELECT * FROM users LIMIT 5
users.skip(4) # => SELECT * FROM users OFFSET 4
```
2009-08-23 16:24:59 -04:00
2008-05-19 16:49:43 -04:00
`GROUP BY` is called `group` :
2013-06-27 12:11:25 -04:00
```ruby
users.project(users[:name]).group(users[:name])
# => SELECT users.name FROM users GROUP BY users.name
```
2008-05-19 16:49:43 -04:00
2014-02-18 17:45:40 -05:00
The best property of arel is its "composability", or closure under all operations. For example, to restrict AND project, just "chain" the method invocations:
2008-05-19 16:49:43 -04:00
2013-06-27 12:11:25 -04:00
```ruby
users \
.where(users[:name].eq('amy')) \
.project(users[:id]) \
# => SELECT users.id FROM users WHERE users.name = 'amy'
```
2008-05-19 16:49:43 -04:00
All operators are chainable in this way, and they are chainable any number of times, in any order.
2008-02-23 19:49:49 -05:00
2013-06-27 12:11:25 -04:00
```ruby
users.where(users[:name].eq('bob')).where(users[:age].lt(25))
```
2009-08-23 16:24:59 -04:00
2010-10-19 13:05:51 -04:00
The `OR` operator works like this:
2008-05-19 16:49:43 -04:00
2013-06-27 12:11:25 -04:00
```ruby
users.where(users[:name].eq('bob').or(users[:age].lt(25)))
```
2009-08-23 16:24:59 -04:00
2010-10-19 13:05:51 -04:00
The `AND` operator behaves similarly.
2008-05-20 13:11:07 -04:00
2014-05-02 14:56:24 -04:00
Aggregate functions `AVG` , `SUM` , `COUNT` , `MIN` , `MAX` , `HAVING` :
```ruby
photos.group(photos[:user_id]).having(photos[:id].count.gt(5)) # => SELECT FROM photos GROUP BY photos.user_id HAVING COUNT(photos.id) > 5
2014-10-31 10:40:28 -04:00
users.project(users[:age].sum) # => SELECT SUM(users.age) FROM users
users.project(users[:age].average) # => SELECT AVG(users.age) FROM users
users.project(users[:age].maximum) # => SELECT MAX(users.age) FROM users
users.project(users[:age].minimum) # => SELECT MIN(users.age) FROM users
2014-05-02 14:56:24 -04:00
users.project(users[:age].count) # => SELECT COUNT(users.age) FROM users
```
Aliasing Aggregate Functions:
```ruby
users.project(users[:age].average.as("mean_age")) # => SELECT AVG(users.age) AS mean_age FROM users
```
2010-09-24 19:45:02 -04:00
### The Crazy Features
2008-02-23 19:49:49 -05:00
2008-05-19 16:49:43 -04:00
The examples above are fairly simple and other libraries match or come close to matching the expressiveness of Arel (e.g., `Sequel` in Ruby).
2008-02-23 19:49:49 -05:00
2011-01-29 01:40:39 -05:00
#### Inline math operations
2012-03-12 14:05:12 -04:00
Suppose we have a table `products` with prices in different currencies. And we have a table `currency_rates` , of constantly changing currency rates. In Arel:
2011-01-29 01:40:39 -05:00
2013-06-27 12:11:25 -04:00
```ruby
products = Arel::Table.new(:products)
2013-12-04 20:33:25 -05:00
# Attributes: [:id, :name, :price, :currency_id]
2011-01-29 01:40:39 -05:00
2013-06-27 12:11:25 -04:00
currency_rates = Arel::Table.new(:currency_rates)
2013-12-04 20:33:25 -05:00
# Attributes: [:from_id, :to_id, :date, :rate]
2013-06-27 12:11:25 -04:00
```
2011-01-29 01:40:39 -05:00
Now, to order products by price in user preferred currency simply call:
2013-06-27 12:11:25 -04:00
```ruby
products.
join(:currency_rates).on(products[:currency_id].eq(currency_rates[:from_id])).
where(currency_rates[:to_id].eq(user_preferred_currency), currency_rates[:date].eq(Date.today)).
order(products[:price] * currency_rates[:rate])
```
2011-01-29 01:40:39 -05:00
2010-09-24 19:45:02 -04:00
#### Complex Joins
2008-02-23 19:49:49 -05:00
2014-06-06 12:23:08 -04:00
Where Arel really shines is in its ability to handle complex joins and aggregations. As a first example, let's consider an "adjacency list", a tree represented in a table. Suppose we have a table `comments` , representing a threaded discussion:
2008-05-19 16:49:43 -04:00
2013-06-27 12:11:25 -04:00
```ruby
comments = Arel::Table.new(:comments)
```
2009-08-23 16:24:59 -04:00
2008-05-19 16:49:43 -04:00
And this table has the following attributes:
2008-02-24 20:26:32 -05:00
2013-06-27 12:11:25 -04:00
```ruby
2013-12-04 20:33:25 -05:00
# [:id, :body, :parent_id]
2013-06-27 12:11:25 -04:00
```
2008-02-23 19:49:49 -05:00
2014-06-06 12:23:08 -04:00
The `parent_id` column is a foreign key from the `comments` table to itself.
Joining a table to itself requires aliasing in SQL. This aliasing can be handled from Arel as below:
2008-02-23 19:49:49 -05:00
2013-06-27 12:11:25 -04:00
```ruby
replies = comments.alias
comments_with_replies = \
2014-06-06 12:23:08 -04:00
comments.join(replies).on(replies[:parent_id].eq(comments[:id])).where(comments[:id].eq(1))
# => SELECT * FROM comments INNER JOIN comments AS comments_2 WHERE comments_2.parent_id = comments.id AND comments.id = 1
2013-06-27 12:11:25 -04:00
```
2009-08-23 16:24:59 -04:00
2014-06-06 12:23:08 -04:00
This will return the reply for the first comment.
2013-03-05 13:11:51 -05:00
2014-10-23 15:08:39 -04:00
[Common Table Expressions(CTE) ](https://en.wikipedia.org/wiki/Common_table_expressions#Common_table_expression ) support via:
2014-05-02 14:56:24 -04:00
Create a `CTE`
```ruby
cte_table = Arel::Table.new(:cte_table)
composed_cte = Arel::Nodes::As.new(cte_table, photos.where(photos[:created_at].gt(Date.current)))
```
Use the created `CTE` :
```ruby
users.
join(cte_table).on(users[:id].eq(cte_table[:user_id])).
project(users[:id], cte_table[:click].sum).
with(composed_cte)
2014-10-31 10:40:28 -04:00
# => WITH cte_table AS (SELECT FROM photos WHERE photos.created_at > '2014-05-02') SELECT users.id, SUM(cte_table.click) FROM users INNER JOIN cte_table ON users.id = cte_table.user_id
2014-05-02 14:56:24 -04:00
```
When your query is too complex for `Arel` , you can use `Arel::SqlLiteral` :
```ruby
2014-05-18 22:13:51 -04:00
photo_clicks = Arel::Nodes::SqlLiteral.new(< < -SQL
2014-05-02 14:56:24 -04:00
CASE WHEN condition1 THEN calculation1
WHEN condition2 THEN calculation2
WHEN condition3 THEN calculation3
ELSE default_calculation END
SQL
)
photos.project(photo_clicks.as("photo_clicks"))
# => SELECT CASE WHEN condition1 THEN calculation1
WHEN condition2 THEN calculation2
WHEN condition3 THEN calculation3
ELSE default_calculation END
FROM "photos"
```
2015-09-01 11:20:19 -04:00
## Contributing to Arel
2013-06-27 12:11:25 -04:00
2015-09-01 11:20:19 -04:00
Arel is work of many contributors. You're encouraged to submit pull requests, propose
features and discuss issues.
See [CONTRIBUTING ](CONTRIBUTING.md ).
## License
Arel is released under the [MIT License ](http://www.opensource.org/licenses/MIT ).