SyntaxFix
Write A Post
Hire A Developer
Questions
if you need to keep only a few rows, consider
DELETE FROM tablename WHERE id NOT IN (5,124,221);
This will keep only some records and discard others.