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

  • Home
  • SEARCH
  • 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 7495347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:02:56+00:00 2026-05-29T18:02:56+00:00

I am not a db speccialist, so question =) How to optimize such: select

  • 0

I am not a db speccialist, so question =)

How to optimize such:

select count(DISTINCT userid) 
from users 
where date_trunc('month',login_date)=date_trunc('month','2012-01-12'::date)

Table rows count is less then 1.5 million. I have an index on login_date, although query execution time is same as without it. Also field userid is primary key.

On server machine this query takes some more than 2000 ms. The first guy who can help bring out the best performance will get reputation++ 😀

—————-a’b’c’d’e’f’g’h’ SOLUTION———————————-

CREATE OR REPLACE FUNCTION my_date_trunc_month(some_date DATE) 
  RETURNS DATE 
AS $$
BEGIN
   return date_trunc('month',$1);
END;
$$LANGUAGE plpgsql
IMMUTABLE;


CREATE INDEX computedIdx ON gameuser_daily_activity (my_date_trunc_month(login_date));

select count(DISTINCT gameuser_fk) from gameuser_daily_activity where my_date_trunc_month(login_date)=my_date_trunc_month('2012-01-12'::date)

AND it takes 110 ms 🙂

  • 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-29T18:03:09+00:00Added an answer on May 29, 2026 at 6:03 pm

    Define this index:

    CREATE INDEX computedIdx ON users (date_trunc('month',login_date))

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

Sidebar

Related Questions

Not too practical maybe, but still interesting. Having some abstract question on matrix multiplication
I have a lock in my c# web app that prevents users from running
Not a web developer so i hope you will spare me if this question
Not sure where to post this question, but I am concerned about the security
this is my first question on Stack Overflow. This is not really a programming
Not sure that this is a valid programming question ... but is it possible
Not very sure how to word this question but I'll give an example. $string
Not very technical, but... I have to implement a bad words filter in a
Not sure if this is possible or if I'm expressing correctly what I'm looking
(Not related to versioning the database schema) Applications that interfaces with databases often have

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.