vote up 2 vote down star
1

Hi Friend,

Can somebody please, help me with a query to delete only 500 rows from a table which has 20000 rows. Also has to be older than a particular date.

Thanks for your help,

Soofy

flag

25% accept rate
which version of SQL Server? 2000? 2005? 2008? 7.0? 6.5? – Nathan DeWitt May 3 at 4:52
1  
Do you mean that you want to delete the oldest 500 as long as they are older than a particular date? The way you phrase it, and the way some of the answers below implement it (I think), you leave it up to the database to pick which rows to delete if there are more than 500 old enough. – Jeremy Huiskamp May 3 at 5:33

6 Answers

vote up 6 vote down

You can use the Top keyword like you would in a select

Delete Top (500) 
From myTable
Where Date < '01/01/2009'
link|flag
1  
In MSSQL 2005 "500" needs to be in brackets. Eg. Delete Top (500). – Simon Hartcher May 3 at 4:41
Good catch. Fixed it – Jeremy May 3 at 4:49
otherwise know as parentheses () ... lol brackets [] – Chad Grant May 3 at 4:53
@Deviant - en.wikipedia.org/wiki/Bracket - They are all brackets. Specifically I could have said round brackets. – Simon Hartcher May 3 at 5:01
i forgot, wikipedia knows all. lol – Chad Grant May 3 at 7:44
show 1 more comment
vote up 5 vote down

If you're using SQL Server 2005, you can do this:

DELETE TOP (500) FROM your_table
WHERE date_field < @my_particular_date

or you can do this:

SET ROWCOUNT 500

DELETE your_table
WHERE date_field < @my_particular_date

in SQL Server 2000, you can do this:

DELETE your_table
WHERE pk_field IN (
  SELECT TOP (500) * FROM your_table
  WHERE date_field < @my_particular_date
)
link|flag
vote up 3 vote down
DELETE FROM Table_Name WHERE Primary_Key_Column IN (
    SELECT TOP 500 Primary_Key_Column FROM Table_Name WHERE [Date] < '01/01/2009'  ORDER BY Primary_Key_Column ASC
)
link|flag
that should be [Date] < '01/01/2009' because the orig. poster wants to delete older dates, not newer ones. – Nathan DeWitt May 3 at 4:49
Sorry. I have edited to reflect that. (one down vote for this?) – M. Jahedbozorgan May 3 at 5:17
vote up 1 vote down

SET ROWCOUNT 500

DELETE FROM TableName WHERE TheDate < @YourDate

link|flag
vote up 1 vote down

Top only works in Transact Sql, each sql has it's own version

For mySql and posGres

Delete 
From myTable
Where Date < '01/01/2009'
LIMIT 10;

For oracle:

SELECT 
FROM myTable 
WHERE Date < '01/01/2009'
and ROWNUM <= 10
link|flag
1  
orig question was tagged sqlserver, hence the T-SQL specific answers. – Nathan DeWitt May 3 at 4:50
1  
That doesn't negate the validity of these answers and since the question is phrased without concern for SQL flavour it will be helpful if someone needs this in the future. – Michael Prewecki May 3 at 5:19
vote up 0 vote down

The only thing I'll add is you probably want to use "ORDER BY [DATE] DESC" at the end of most of these queries. And if you have multiple matching dates, you'll want to add additional column ordering to get the correct values deleted.

This presumes of course, that you actually have a "createddate" or "modifieddate" you can use to sort by. You didn't specify whether it was the oldest created or the oldest unmodified. (ie if ID=1 is the oldest but I modified it yesterday should it still be deleted?) which you'll need to be careful with if you sort by the primary key - assuming you're using an incrementing primary key and not GUIDs or something...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.