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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:20:03+00:00 2026-06-15T20:20:03+00:00

I have a Rails app on a Postgres database which relies heavily on queries

  • 0

I have a Rails app on a Postgres database which relies heavily on queries like this:

SELECT DISTINCT client_id FROM orders WHERE orders.total>100

I need, essentially, the ids of all the clients who have orders which meet a certain condition. I only need the id, so I figured this is way faster than using joins.

Would I benefit from adding an index to the column “total”? I don’t mind insert speed, I just need the query to run extremely fast.

  • 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-15T20:20:04+00:00Added an answer on June 15, 2026 at 8:20 pm

    I would expect the following multicolumn index to be fastest:

    CREATE INDEX orders_foo_idx ON orders (total DESC, client_id);
    

    PostgreSQL 9.2 could benefit even more. With it’s “index-only tuples” feature, it could serve the query without hitting the table under favorable circumstances: no writes since the last VACUUM.

    DESC or ASC hardly matters in this case. A B-tree index can be searched in both directions almost equally efficient.

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

Sidebar

Related Questions

I have a Rails app using a Postgres database with a table called geolite_blocks.
I have a rails app that runs on Heroku using their standard postgres database
My rails 3 app needs to use a SELECT DISTINCT which (as far as
I have this postgres sql query: select * from stats where athlete_id = 5
I have rails app which are working perfectly in the local computer. But when
I have a rails app, where Im having a drop box like feature-set. Each
I have my rails app, which is filled with products, set up with a
I have a rails app with Devise 1.4.9. Currently, it allows only users from
I have rails app which has a list of users. I have different relations
I have to connect to a legacy postgres database which has ENCODING = 'SQL_ASCII';

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.