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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:29:24+00:00 2026-05-26T15:29:24+00:00

I want to do a MySQL Query which selects a given number of Rows

  • 0

I want to do a MySQL Query which selects a given number of Rows from a single table from a given offset like

SELECT * FROM table 
WHERE timestamp < '2011-11-04 09:01:05' 
ORDER BY timestamp DESC 
LIMIT 100

My problem is that i always want all rows within a day if one row of a day will be included in the result.
It would be no problem to have a result with e.g. 102 rows instead of 100

Can i realize this with a single SQL statement?

Thanks for your help!

  • 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-26T15:29:24+00:00Added an answer on May 26, 2026 at 3:29 pm

    This seems to work on my system:

    SELECT UserID, Created
    FROM some_user
    WHERE Created < '2011-11-04 09:10:11'
    AND Created >= (
        SELECT DATE(Created) -- note: DATE() strips out the time portion from datetime
        FROM some_user
        WHERE Created < '2011-11-04 09:10:11'
        ORDER BY Created DESC
        LIMIT 99, 1 -- note: counting starts from 0 so LIMIT 99, 1 returns 100th row
    )
    ORDER BY Created DESC
    -- 0 rows affected, 102 rows found. Duration for 1 query: 0.047 sec.
    

    There might be a faster alternative.

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

Sidebar

Related Questions

I want to find number of repeated value in group using single select query.
I want to accomplish this (mysql) query: UPDATE table SET field = field +
I have a question about my mysql query. I want to count the number
I want to my array, somthing like this: array(userid=>username,1=>ganeshfriends,2=>tester) mysql query something like this:
I want to fetch NULL values in Mysql . My query is like this-:
I want to build a mySQL query, which returns all nodes in a graph
I have three tables which I want to query in MySQ. As follows: **Table:
Given the following MySQL query: SELECT `show`.`id` , GROUP_CONCAT( `showClips`.`clipId` ORDER BY `position` ASC
Given a file which consists of multiple line MySQL queries, eg SELECT foo, bar,
I want to run MySQL query's on command without reloading the page. I think

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.