
January 8th, 2013, 05:21 PM
|
|
Registered User
|
|
Join Date: Jan 2013
Posts: 6
Time spent in forums: 1 h 30 m 10 sec
Reputation Power: 0
|
|
|
Deleting a range of rows from a table
Hi all, I could not find this answer in my searches, I apologize if it has been answered previously.
I am very new to SQL. I am looking for a query to delete a range of rows from a single table. There are MANY rows (200k+  ), and the solutions I have found are all for one row at a time like below:
DELETE FROM post
WHERE postid=237910
DELETE FROM post
WHERE postid=237911
DELETE FROM post
WHERE postid=237912
all the way to:
DELETE FROM post
WHERE postid=470433
Ideas? Better methodologies?
TYIA!
|