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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T23:17:29+00:00 2026-05-21T23:17:29+00:00

I have a table with 800,000 entries without a primary key. I am not

  • 0

I have a table with 800,000 entries without a primary key. I am not allowed to add a primary key and I cant sort by TOP 1 ….ORDER BY DESC because it takes hours to complete this task. So I tried this work around:

DECLARE @ROWCOUNT int, @OFFSET int
SELECT @ROWCOUNT = (SELECT COUNT(field) FROM TABLE)
SET @OFFSET = @ROWCOUNT-1


select TOP 1  FROM TABLE WHERE=?????NO PRIMARY KEY??? BETWEEN @Offset AND @ROWCOUNT

Of course this doesn’t work.

Anyway to do use this code/or better code to retrieve the last row in table?

  • 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-21T23:17:30+00:00Added an answer on May 21, 2026 at 11:17 pm

    I assume that when you are saying ‘last rows’, you mean ‘last created rows’.

    Even if you had primary key, it would still be not the best option to use it do determine rows creation order.
    There is no guarantee that that the row with the bigger primary key value was created after the row with a smaller primary key value.
    Even if primary key is on identity column, you can still always override identity values on insert by using
    set identity_insert on.

    It is a better idea to have timestamp column, for example CreatedDateTime with a default constraint.
    You would have index on this field.
    Then your query would be simple, efficient and correct:

    select top 1 *
    from MyTable
    order by CreatedDateTime desc
    

    If you don’t have timestamp column, you can’t determine ‘last rows’.

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

Sidebar

Related Questions

I have table with a unique auto-incremental primary key. Over time, entries may be
I have a table with almost 800,000 records and I am currently using dynamic
I have a table with a Unique Index that I need to load 800,000
I have table with 50 entries (users with such details like Name Surname Location
I have a table of width 800 and one inner table within that of
I have a table with a fixed width of 800. I noticed that when
We have a database with a very simple schema: CREATE TABLE IF NOT EXISTS
I have a query which joins 6 tables, produces 800,000 rows, and inserts them
Suppose I have a table like CREATE TABLE associacao ( id bigserial NOT NULL,
I have a table with the following column: NOTEID NUMBER NOT NULL, For all

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.