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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:08:45+00:00 2026-05-14T06:08:45+00:00

What is the most efficient way to do this? Right now I am doing

  • 0

What is the most efficient way to do this?

Right now I am doing it this way..

$m= date("m");
$de= date("d");
$y= date("Y");
$userid = $_SESSION['user_id'];
//today
$date = date("Y-m-d");
$today = mysql_query("SELECT * 
                      FROM cdr 
                      WHERE accountcode = '$userid' 
                        AND calldate LIKE '$date%'") or die(mysql_error());
$counttoday = mysql_num_rows($today);
//yesterday
$yesterdaydate = date('m/d/Y', mktime(0,0,0,$m,($de-1),$y));
$yesterday = mysql_query("SELECT * 
                          FROM cdr 
                          WHERE accountcode = '$userid' 
                            AND calldate LIKE '$yesterdaydate%'") or die(mysql_error());
$countyesterday = mysql_num_rows($yesterday);

then

print $counttoday;
print $countyesterday;

I know there has to be a better way to do this.

Let me know, thanks!

  • 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-14T06:08:45+00:00Added an answer on May 14, 2026 at 6:08 am

    I don’t know if this is an absolute better way to do what you’re trying to do, but you can use the MySQL statement COUNT() to count the number of rows returned by a query.

    So for example, writing

    SELECT COUNT(*) 
    FROM cdr 
    WHERE accountcode = '$userid' 
    AND calldate LIKE '$date%'
    

    Will return a 1×1 table of results with the number of rows in the query.
    Then you can use

    $counttoday = mysql_result($today, 0);
    

    to fetch the count.

    There doesn’t seem to be a faster way to do this with one function call, unless you define your own function I suppose. But for a very large result from your initial query, I would imagine this is faster since I assume mysql_num_rows() has to count each row individually all over again. Doing it this way only goes over the rows of the query result once, when the result itself is being populated.

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

Sidebar

Related Questions

I'm trying to determine what would be the most efficient/recommended way of doing this--I
What is the most efficient way to rotate a list in python? Right now
What's the most efficient way to remove the text 2010-04-07 14:25:50,773 DEBUG This is
I have this string: B82V16814133260 what would be the most efficient way to get
I am trying to figure out the most efficient way to format this query.
What is the most efficient way to get Elastic Map Reduce output into SimpleDB?
What is the most efficient way to sort a list, [0,0,1,0,1,1,0] whose elements are
What is the most efficient way to drop a table in SAS? I have
What is the most efficient way for checking for equality of two m *
What is the most efficient way to set/re-order the TabIndex properties of many form

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.