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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:10:11+00:00 2026-06-17T21:10:11+00:00

In my database, i got the following table with the following structure: [taskdate_user] id

  • 0

In my database, i got the following table with the following structure:

[taskdate_user]
id : int
user_id : int
taskdate_time : datetime

If i got, for example, 2 rows with the following data:

id : 1
user_id : 1
taskdate_time : 2013-01-25 10:15

id : 2
user_id : 1
taskdate_time : 2013-01-25 11:15

I need to filter out the earliest time for the user and taskdate_time combination. I got the following query right now :

// Get all the TaskdateUser objects for this week
$taskdateuser = TaskdateUser::where('taskdate_time', '>=', $this_monday)->where('taskdate_time', '<', $this_sunday)->order_by('taskdate_time', 'ASC')->get();

This will get me all TaskdateUser objects for the current week, but it does return all of them. Right now, i am ordering by taskdate_time and i’m doing that ascending. So i pick each first object for the user_id – taskdate_time combination.

This seems like a lot of extra code to filter out the first user_id – date combination. Does anybody has a suggestion to simplify this? Many thanks in advance!

EDIT 2 :

I need the earliest time, per user, per date.

I’ve edited my query in the following way :

    $taskdateuser = TaskdateUser::where('taskdate_time', '>=', $monday)
                                ->where('taskdate_time', '<', $sunday)
                                ->raw_where('id IN 
                                    (
                                        SELECT id
                                        FROM taskdate_user 
                                        GROUP BY date_format(taskdate_time, "%Y-%m-%d"), user_id
                                     )')
                                ->order_by('taskdate_time', 'ASC')
                                ->get();

If i echo all the taskdate_times, the output is as follows :

2013-01-21 14:14:00
2013-01-21 17:47:02
2013-01-25 10:56:00
2013-01-26 17:56:41

I have multiple taskdate_time’s on 2013-01-26 and 2013-01-25 which will show up only 1 time. And the 2013-01-21 always shows up 2 times. Why is this?

  • 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-17T21:10:13+00:00Added an answer on June 17, 2026 at 9:10 pm

    Get the latest date from grouped MySQL data

    You will have to use RAW queries, but if I understand what you want, that should help you.

    Something like:

    $taskdateuser = DB::query(SELECT `id`,`user_id`,`taskdate_time` FROM `taskdate_user` WHERE `taskdate_time` IN (SELECT max(`taskdate_time`) FROM `taskdate_user`));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a database table called 'mesg' with the following structure: receiver_id | sender_id
I've got an Oracle 10g database with a table with a structure and content
Ok, I've got a database table where data gets dumped by this horrid little
I used an sql insert into a database table and I got the following
I have the following database structure: Table 1 Table 2 Table 3 tid_1 ----(many-to-one)----
I've got a SQL Server database with the the following tables: Client (ClientID, ClientName)
I got the following entry in my database: images/test.jpg I want to trim the
Say I've got the following database (generally they will be much bigger): <inventory> <book
I am using following datatype in my database . but I got exception as
Got a problem with my add function to my database. The following code hangs

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.