+ 1
How to remove a row on mysql?
3 Antworten
+ 8
Use DELETE command;
DELETE FROM table_name WHERE specific_condition;
Mind you if you don't specify a condition you will delete all records.
Hth, cmiiw
+ 2
DELETE FROM users WHERE id = 1;
You are deleting the user who has id=1.