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 select a row from mysql which matches a specific id. I
I have a MySQL query in which I want to include a list of
I want to my array, somthing like this: array(userid=>username,1=>ganeshfriends,2=>tester) mysql query something like this:
MySQL query is SELECT option as value, name as text from jos_components where parent
I want to build a mySQL query, which returns all nodes in a graph
Given the following MySQL query: SELECT `show`.`id` , GROUP_CONCAT( `showClips`.`clipId` ORDER BY `position` ASC
What I want to do is while executing MySQL query, passing column data into
I want to develop mysql database application using dbexpress to develop from scratch or
I'm creating a Web interface for a table in Mysql and want to use
Hi i'm struggling to write a particular MySQL Join Query. I have a table

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.