- DELETE
- DELETE FROM sometable; # wipes all contents of table
- DELETE FROM sometable WHERE somecol = 'someval';
- DELETE FROM cars WHERE color = 'red'; #no more pesky red cars
- DELETE FROM cars WHERE model = 'gremlin' AND make = 'AMC'; #when you've gotten rid of all the gremlins
- DELETE syntax reference
NEXT
INDEX
Master Index