is there a query i can use to remove a large number of rows from a database i have? using php myadmin.
That will wipe the lot. If you have an auto_increment'd field called id and you want to remove all the lines where id is equal to 88633 to the end of the table, then: DELETE FROM tableName WHERE id > 88632; Code (markup): will do it. Sounds like you might want to ensure you have the DB backed up before doing it.