Arel is a Relational Algebra for Ruby. It simplifies the generation complex of SQL queries and it adapts to various RDBMS systems. Arel is included in version 3 of Rails framework. More info on https://github.com/brynary/arel

learn more… | top users | synonyms

0
votes
0answers
22 views

Translate complex SQL query using SET to Arel or Squeel

How can I translate the given query using AREL or Squeel: SET @start = '2013-05-14'; SET @end = '2013-11-01'; SET @days = DATEDIFF(@end, @start); SET @UnusedDays = 0; SELECT @UnusedDays := ...
0
votes
1answer
23 views

Equivalent of `pluck` that Returns a Relation

In my Rails app, I've written a method that generates an array of unique names from a set of records in the database: class Book < ActiveRecord::Base attr_accessible :title, :author def ...
0
votes
1answer
25 views

ActiveRecord OR for existing scopes

I have an existing model with a set of complex scopes: scope :test1 , where(gift: true) scope :test2 , lambda {|time| where("last_created_at > ?", time)} scope :test3 , where(approved: true) I ...
0
votes
0answers
12 views

Most efficient Arel query to retrieve unique commenters on an article

I have an Article which has_many :comments, and Comment belongs_to :article and :user. I was wondering what the most efficient Arel query would be to get the unique users who commented on a given ...
1
vote
0answers
19 views

Cannot programmatically combine AND and OR conditions using Arel

Given the SQL conditions cond1, cond2 and cond3 generated using Arel operators (.eq for example), I cannot seem to use Arel to produce the SQL: SELECT * FROM <table> WHERE (cond1 AND cond2) OR ...
0
votes
1answer
20 views

Rails mysql query with Single Table Inheritance N+1 issue

I am trying to find all users that signed up during a given period of time to the ActionMovie plan. I am running into an N+1 problem and its taking me a very long time to get the number of new ...
1
vote
1answer
49 views

Converting an SQL query to a Rails AREL query?

I have a working SQL query thanks to the help of Erwin Brandstetter in my earlier question 'Order with a has_many relationship'. How would I turn this SQL into an ActiveRecords or AREL query for use ...
0
votes
1answer
68 views

PgSQL - to_tsquery and JOINS leads to Error in Rails

I have the following query: query = param.tag_list.join("|") title = "ts_headline(title, query) AS title" rank = "ts_rank_cd(tsv, query) AS rank" Job.select( [ title, rank, :starts_at, ...
0
votes
0answers
28 views

Nesting of Aggregate functions in PostgreSQL

scope :search, ->(search_term) { select('COUNT(product_id) AS item_count') .joins(:product => :user) .where('users.name = ? OR products.brand = ?', search_term, search_term) ...
1
vote
1answer
55 views

Rails 3 or arel chain/merge SQL conditions conditionally

Is there a way in Rails 3 to merge record conditions conditionally without doing string or array merging? For example: conditions = #? if !params[:x].blank? # add a condition ...
0
votes
1answer
35 views

Are those two queries the same in rails 3.2.12?

We need to retrieve logs for customer comm record in our rails app. The condition in plain english is logs for customer_comm_record based on: #1. the sales_id in customer comm record's customers is ...
0
votes
2answers
25 views

Rails/Arel User.where(:id => <Some Other Table>.user_id)

Hey I'm just getting back into rails and I've forgotten a lot of the stuff needed to work with some associations. The Problem: I have two tables, Customer with fiels id and user_id and User with ...
0
votes
1answer
53 views

Rails subquery / nested join on a many-to-many association

I have two models, Item and Tag, that have a many-to-many relationship through a model called ItemTag. I want the user to be able to find all items that have ALL of a given set of tags.tag_name. So, ...
1
vote
1answer
23 views

Using includes with AREL functions

I have the following classes in my application: class Prompt has_many :entries end class Entry belongs_to :prompt belongs_to :user def self.approved where("is_approved") end end ...
0
votes
0answers
21 views

An aliased string as an AREL/AR statement

Is there an AREL/ActiveRecord way to do: SomeModel.select('"some_string" AS alias_name') in Rails 3.2? Namely, aliasing a string as alias_name with Ruby and no SQL expressions.
0
votes
0answers
29 views

ordering and limiting a count/group_by arel query?

Having this AREL query: @sessions=(params[:region_id]\ ? AppStatistics::Session.where(:region_id=>params[:region_id])\ : AppStatistics::Session.where(true)) prod_table = ...
0
votes
1answer
32 views

Rails, find results based on shared assocaition using Active Record Query or AREL

I'm working on a rails project where I have a User, that has_many Teams through a Membership model. The User has a privacy setting which can be (public, private or protected) On the current user's ...
0
votes
0answers
47 views

Squeel query syntax to retrieve users' elements sharing the same group

Using Ruby on Rails 3.2.13 and Squeel I have the following models: class Group < ActiveRecord::Base has_and_belongs_to_many :users end class User < ActiveRecord::Base ...
0
votes
1answer
25 views

Trying to create a complex AR query that includes associations

I have a Story model that has a :category attribute. Story is also in a HABTM relationship with Tag. class Tag < ActiveRecord::Base has_and_belongs_to_many :stories, :uniq => true ...
2
votes
1answer
55 views

How to join on subqueries using ARel?

I have a few massive SQL request involving join across various models in my rails application. A single request can involve 6 to 10 tables. To run the request faster I want to use sub-queries in the ...
0
votes
1answer
35 views

How to use AREL eq() method in a where with joined data

I currently have this scope: class User has_many :inbox_messages, :through => :message_users do def unread published.where(:message_users => { :sender => false, :trash => ...
2
votes
1answer
60 views

Rails: batched attribute queries using AREL

I'd like to use something like find_in_batches, but instead of grouping fully instantiated AR objects, I would like to group a certain attribute, like, let's say, the id. So, basically, a mixture of ...
1
vote
1answer
47 views

Queries with Arel

I'm working with rails and I have this sql query I would like to do with arel. "SELECT `people`.* FROM `peoples` WHERE `peoples`.`home_id` = 289 AND (`people`.`created_at` BETWEEN '2013-03-12' AND ...
0
votes
1answer
95 views

How can I create a scope in a model that returns only those objects with an associated rank greater than the current_user's rank?

I am trying to create a :readable scope in my Page model to return all the Pages that the current_person has sufficient 'rank' to read: scope :readable, lambda { |current_person| ...
0
votes
3answers
55 views

Condition true for ALL records in join

I'm trying to return records from A where all matching records from B satisfy a condition. At the moment my query returns records from A where there is any record from B that satisfies the condition. ...
0
votes
0answers
41 views

How can I produce this update statement in Arel?

I'm trying to convert a SQL statement in a rails application from a string to an Arel update statement. This seems possible but I'm not having any luck. I can only seem to get close. The current ...
0
votes
1answer
86 views

SQL Inner JOIN with query

I am trying to do something like this but I am not sure if you can do this with a inner join: SELECT "scores".* FROM "scores" INNER JOIN "games" ON "games"."id" = "scores"."games_id" WHERE ...
0
votes
1answer
44 views

Rails Nested / Multi-level AREL Query

I have 3 models: Tiersets has_many Tiers Tiers belongs_to Tierset has_and_belongs_to_many Features Feature has_and_belongs_to_many Tiers In Feature, I have a String column named ...
0
votes
1answer
132 views

Rails 3, Cannot visit Arel::SelectManager

I have user model with :except_ids scope: scope :except_ids, ->(*ids) { where { id.not_in ids } } The problem is - I can't use it with another lazy queries. For example, if I call something like ...
0
votes
2answers
46 views

Rails Active Record: modifying and saving the child of an object from the result of joins?

So, this: p = Person .joins('join organization o on o.id = organization_id') .where('o.id' => 1) .select('person.*') .first! p.name = 'hi!' p.save! works as expected, saving the person's name. ...
0
votes
0answers
34 views

how to intersect two associations in arel?

I have a project model w/ this association describing team members that have accepted (status) Class Project < ActiveRecord::Base has_many :participants, :through => :team_members, :source ...
1
vote
3answers
119 views

Select records with highest values for each subset

I have a set of records of which some, but not all, have a 'path' field, and all have a 'value' field. I wish to select only those which either do not have a path, or have the largest value of all the ...
0
votes
0answers
25 views

Rails associations - build catalog

Could u help me to build a catalog with parent and child catalogs class Catalog < ActiveRecord::Base attr_accessible :description, :name, :slug has_many :parent_catalogs end class ...
0
votes
0answers
35 views

scope to order on polymorphic belongs to association attribute

i got a polymorphic belongs to association on a model. i want a scope that orders my models on an associated column. class Notifier < ActiveRecord::Base belongs_to :source, :polymorphic => ...
1
vote
1answer
47 views

Grouping AND and OR clauses with Arel

I am trying to build a scope in my rails model that, when invoked, would give me a set of nested AND and OR clauses on 7 boolean fields. Here's an example with simplified column names for clarity: ...
1
vote
1answer
69 views

Arel: Left outer join using symbols

I have this use case where I get the symbolized deep associations from a certain model, and I have to perform certain queries that involve using outer joins. How can one do it WITHOUT resorting to ...
2
votes
3answers
75 views

How do I join a table to itself in AREL to find duplicates?

I have a table, transactions, that may contain duplicates (for us, a duplicate is a Transaction with the same account_id, date, and amount). My English-language functional requirement is "I want to ...
0
votes
1answer
135 views

Can you turn an Arel table back into a scope?

I need Arel to do a few things that aren't possible with ActiveRecord, but my method should return a scope, since callers may want to add a few scopes of their own. Is this possible? e.g. ...
0
votes
3answers
33 views

How do I write a query in Active record for a model that has whos has_many is empty?

I have model Member which has many DuesPayments. I want a query for Members who didn't make their dues_payment in 2012. The field on DuesPayment is :for_year. Or in English - I want all members who ...
0
votes
1answer
72 views

Rails Active Record Count Across Calculated Field

Using the AREL / Rails calculations I'm trying to execute the following: SELECT to_char(timestamp, 'YYYY-MM-DD') AS segment, COUNT(*) AS counter FROM pages GROUP BY segment ORDER BY segment I can ...
0
votes
0answers
116 views

Testing ActiveRecord.find_by_sql() type queries in RSpec

How does someone test logic that involves MySQL-specific functions (such as year(), or month()) using rspec? Currently, I'm inclined to simply stub the method and return the appropriate data ...
0
votes
2answers
61 views

ActiveRecord scope based on number of foreign keys

Given the canonical example: class Post < ActiveRecord::Base has_many :comments end class Comments < ActiveRecord::Base belongs_to :post end I would like to return a scope (i.e. ...
0
votes
0answers
21 views

Table-less select using Arel

How would one write the following SQL query using only Arel functions? select array_to_string(array(select name from tags, taggings where tags.id=taggings.id), ', ') Caveat: This is an SQL fragment ...
0
votes
0answers
39 views

Combining multiple scopes on joined models with or

I would like to build a search scope in AREL that combines 2 other scopes from child objects eg: Client.search("query") Host.search("query") Review.search("query") Review: scope :search, ...
3
votes
1answer
58 views

Why is AREL adding OR IN (NULL) to BETWEEN conditions?

I have a scope in the model: scope :daily, lambda {|day| where :post_time => [day.beginning_of_day() .. day.end_of_day()] } :post_time is declare not-nullable in the database, but AREL ...
1
vote
2answers
63 views

TypeError: Cannot visit Mail::Multibyte::Chars

I recently update the gems on our Gemfile and started getting: irb(main):002:0> User.new(:email => "foob@gmail.com").valid? TypeError: Cannot visit Mail::Multibyte::Chars User Model tiene: ...
0
votes
1answer
150 views

How to combine multiple tables via model with AREL

I have a legacy database that I need in order to pull data for a rails app. Each table is split up into multiple tables with a numeric suffix. Each table holds data for four hours of the day. We ...
0
votes
1answer
79 views

Rails & Papertrail - Include previous version in query

I'm creating an application the requires Admin approval when articles are created and updated. I used paper trail to accomplish this, storing each update to the articles. When an article is updated, ...
0
votes
1answer
88 views

Convert this SQL query to AREL (outer joins)

I'm trying to convert this query to AREL: SELECT users.* FROM users LEFT OUTER JOIN ( SELECT DISTINCT educations.user_id FROM educations INNER JOIN schools ON ...
0
votes
1answer
72 views

How to search belongs_to association attributes

I have two entities Posts and Comments associated as follows class Post < ActiveRecord::Base attr_accessible :title, :msg has_many :comments end class Comment < ActiveRecord::Base ...

1 2 3 4 5 7