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
|
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
|
||||||
|
|
|
You can use the Top keyword like you would in a select
|
||||||||||||
|
|
|
If you're using SQL Server 2005, you can do this:
or you can do this:
in SQL Server 2000, you can do this:
|
||
|
|
|
|
|
||||
|
|
|
SET ROWCOUNT 500 DELETE FROM TableName WHERE TheDate < @YourDate |
||
|
|
|
|
Top only works in Transact Sql, each sql has it's own version For mySql and posGres
For oracle:
|
||||||||
|
|
|
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... |
||
|
|