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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T21:16:22+00:00 2026-06-04T21:16:22+00:00

Is there any way to delete all the rows in a table except one

  • 0

Is there any way to delete all the rows in a table except one (random) row, without specifying any column names in the DELETE statement?

I’m trying to do something like this:

CREATE TABLE [dbo].[DeleteExceptTop1]([Id] INT)
INSERT [dbo].[DeleteExceptTop1] SELECT 1
INSERT [dbo].[DeleteExceptTop1] SELECT 2
INSERT [dbo].[DeleteExceptTop1] SELECT 3

SELECT * FROM [dbo].[DeleteExceptTop1]

DELETE
FROM [dbo].[DeleteExceptTop1]
EXCEPT
SELECT TOP 1 * FROM [dbo].[DeleteExceptTop1]

SELECT * FROM [dbo].[DeleteExceptTop1]

The final SELECT should yield one row (could be any of the three).

  • 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-04T21:16:24+00:00Added an answer on June 4, 2026 at 9:16 pm
    ;WITH CTE AS
    (
    SELECT ROW_NUMBER() OVER (ORDER BY (SELECT newid())) AS RN
    FROM [dbo].[DeleteExceptTop1]
    )
    DELETE FROM CTE
    WHERE RN > 1
    

    Or similar to @abatishchev’s answer but with more variety in the ordering and avoiding deprecated constructs.

    DECLARE @C INT
    SELECT @C = COUNT(*) - 1 
    FROM [dbo].[DeleteExceptTop1]
    
    IF @c > 0
    BEGIN
    WITH CTE AS
    (
    SELECT TOP(@C) *
    FROM [dbo].[DeleteExceptTop1]
    ORDER BY NEWID()
    )
    DELETE FROM CTE;
    END
    

    Or a final way that uses EXCEPT and assumes no duplicate rows and that all columns are of datatypes compatible with the EXCEPT operator

    /*Materialise TOP 1 to ensure only evaluated once*/
    SELECT TOP(1) * 
    INTO #T
    FROM [dbo].[DeleteExceptTop1]
    ORDER BY NEWID()
    
    ;WITH CTE AS
    (
    SELECT *
    FROM [dbo].[DeleteExceptTop1] T1
    WHERE EXISTS(
                 SELECT *
                 FROM #T
                 EXCEPT
                 SELECT T1.*)
    )
    DELETE FROM CTE;
    
    DROP TABLE #T
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a simple way to delete rows in Azure Table Storage without Query,
Is there any way to retrieve or delete multiple Facebook request_ids in one Facebook
I want to delete all the data rows in the table, but without dropping
Is there any way to delete or remove document from collection using the GUI?
Is there any way to check if it is safe to delete record from
Is there any way within the iOS SDK for an app to delete itself?
I'm trying to delete all rows in a table using Castle ActiveRecord. Normally, I
Is there any way in MySQL to only log deletes? I tried using the
If someone has deleted the remote branch, is there any way I can pull
is there any way to force the execution of task in Rake, even if

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.