What is the SQL to delete a single row out of a table? And what is the SQL to simply empty a table?
And one more thing and I will never bother you again, where can I get PHPMyAdmin?
delete from mytable where id = 1
truncate table mytable
http://phpmyadmin.sourceforge.net/
DELETE FROM table WHERE row = '1' DELETE FROM table
sometimes its faster to drop a table and add it again then it is to delete all the rows.