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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:00:09+00:00 2026-05-29T10:00:09+00:00

The following MySQL query returns a result set with just over a million rows:

  • 0

The following MySQL query returns a result set with just over a million rows:

SELECT postid
FROM post p
JOIN thread t ON p.threadid = t.threadid
WHERE t.forumid = 10
AND t.visible = 1
AND p.visible = 1
ORDER BY p.dateline desc

Which is nice, however I want to get the row at the millionth position.

So the question is, if you haven’t guessed already, how do I go about doing this

NOTE : This table is actively being used, so new rows are added all the time.

EDIT : That question isn’t entirely clear, the query returns a list of all posts in a specific forum order by post date desc, so it isn’t so much the millionth post in the result set rather the millionth post on the forum.

  • 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-29T10:00:09+00:00Added an answer on May 29, 2026 at 10:00 am

    You can use the LIMIT clause which accepts a zero-based record index followed by a record count.

    Therefore for a single record at the millionth row, you could use:

    SELECT postid
    FROM post p
    JOIN thread t ON p.threadid = t.threadid
    WHERE t.forumid = 10
    AND t.visible = 1
    AND p.visible = 1
    ORDER BY p.dateline desc
    LIMIT 999999,1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

GOT error for the following query in MYSQL(version5.1) SELECT year,month,sum(fact_1),sum(fact_2),sum(fact_3),sum(fact_4) from( select year,month,fact_1,fact_2,0 as
The following MySQL query completes in under 0.02 seconds : SELECT * FROM `Table1`
I have the following query: select count(L.ID) from LA inner join L on (LA.leadid
Please consider the following: $query = SELECT legIDs FROM trip; $result = mysql_query($query) or
I have the following query: $sql = SET @rownum := 0; SELECT * FROM
I have an application that executes the following MySQL query: SELECT 402 AS user_id,
I am executing a following query: SELECT DISTINCT users.user_id, users.email, users.irc_nickname FROM users, user_group_map,
I am trying to return a result set from a MySQL database table of
I have the following PHP/MySQL code: function executeMultirowQuery($query) { $result = mysql_query($query); $table =
I'm using the following mysql query to return some data from my database. Currently

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.