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 8906353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:37:53+00:00 2026-06-15T02:37:53+00:00

I have a model Planning with a start_time attributes. Say I would like to

  • 0

I have a model Planning with a start_time attributes.
Say I would like to get all the plannings that are between 9AM and 12PM OR between 6PM and 11PM.

Basically I would do:

Planning.where do 
     (start_time >= @start_time[0]) & (start_time <= @end_time[0]) 
     | 
     (start_time >= @start_time[1]) & (start_time <= @end_time[1])
end

The thing is that the number of time slots varies… Any thougths?

If it can help, I use Squeel gem.

Thanks in advance!

  • 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-06-15T02:37:54+00:00Added an answer on June 15, 2026 at 2:37 am

    You can do whatever you want within the where block; yet you must return the actual query at the end, because this is what will be used as the where clause.

    So, given an array of times like this:

    times = [ [ '09:00:00', '12:00:00' ], [ '18:00:00', '23:00:00' ] ]
    

    Here is a verbose solution:

    Planning.where do
      query = nil
    
      times.each do |a,b|
        q = (start_time >= a) & (end_time <= b)
    
        if query
          query |= q
        else
          query = q
        end
      end
    
      query
    end
    

    Here is a more clever solution:

    Planning.where do
      times.map { |a,b| (start_time >= a) & (end_time <= b) }.reduce(&:|)
    end
    

    Both do generate the following SQL:

    SELECT "plannings".* FROM "plannings"
    WHERE ((
      ("plannings"."start_time" >= '09:00:00' AND "plannings"."end_time" <= '12:00:00')
      OR
      ("plannings"."start_time" >= '18:00:00' AND "plannings"."end_time" <= '23:00:00')
    ))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have Model.objects.all() I want to get only one object for any content_object=foo,
I have a model that looks like this: class Pdf extends \lithium\data\Model { protected
I have a model that looks like this: class Foo(ndb.Model): bar = ndb.TextProperty(required=True) #
I have model Article it has field title with some text that may contain
I have model like this: scope :search_posts, lambda { |query| mega_posts.where( title LIKE ?
Lets say I have model inheritance set up in the way defined below. class
In my controller I have model operations that can return empty results. I've setup
I am planning on using a recursive table in my data model so that
I have a rails app that is using Devise, with a User model, no
Using has_many => through association. Here is what i have. :planning model has_many :acttypes

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.