0
MySQL How could I delete many times a row where the values are the same
I tried DELETE FROM TABLE WHERE VALUE = 10 and it works but it only delete one row but I want to delete all of the row where value is 10
3 Answers
+ 2
Really strange.... "DELETE FROM table_name WHERE value=10" would do it
+ 1
Just by memory: DELETE * FROM TABLE WHERE VALUE = 10. So add *
0
I tried it but it gives me a syntax error