Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6012265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:22:43+00:00 2026-05-23T02:22:43+00:00

The query works fine but as an exercise how would I convert it utilize

  • 0

The query works fine but as an exercise how would I convert it utilize ActiveRecord methods?

Model.find_by_sql("SELECT *, SUM(impressions) AS impressions, SUM(cost) AS cost
                   FROM display_stats
                   WHERE (created_at >= '#{(Date.today-2).to_time.strftime('%Y-%m-%d')}'
                          AND created_at <= '#{(Date.today-1).to_time.strftime('%Y-%m-%d')}')
                   GROUP BY banner_id
                   ORDER BY cost DESC")

Here is my model structure:

DisplayStat (id: integer,
             banner_id: integer,
             comments: string,
             impressions: integer,
             cost: integer,
             created_at: datetime,
             updated_at: datetime)

Is it possible to write the above query without using raw SQL?


Running Rails 3.1 and MySQL 5.5

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T02:22:44+00:00Added an answer on May 23, 2026 at 2:22 am

    Try this:

    DisplayStat.
      select("banner_id, SUM(impressions) AS impressions, SUM(cost) AS cost").
      where(:created_at => (2.days.ago.beginning_of_day..2.days.ago.end_of_day)).
      group(:banner_id).
      order("cost DESC")
    

    The date range is from the start to the end of the day; 2 days ago. When you pass a date range to the conditions hash, rails generates a BETWEEN operator.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I run this query, it works fine but the individual fields would pull
I have the following query which works fine with MySQL but refuses to work
I have a query which works fine in MySQL, but when I run it
I have written a SQL query that works just fine, but am having a
the current SQL query works fine locally on MAMP 1.8.4 running MySQL 5.1.37. SELECT
I am using following query which works fine for me except one problem SELECT
In SQL SERVER 2005 This query works fine : Select * from sys.procedures where
I tested this query in my database, and it works fine: select * from
Got the following simple query which works fine through phpmyadmin but when I add
I have an INSERT query that works fine, but when I add an extra

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.