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

14th Jun 2020, 5:48 PM
JeaLuq
JeaLuq - avatar
3 odpowiedzi
+ 2
Really strange.... "DELETE FROM table_name WHERE value=10" would do it
14th Jun 2020, 7:37 PM
KrOW
KrOW - avatar
+ 1
Just by memory: DELETE * FROM TABLE WHERE VALUE = 10. So add *
14th Jun 2020, 6:08 PM
spotbot2k
spotbot2k - avatar
0
I tried it but it gives me a syntax error
14th Jun 2020, 6:25 PM
JeaLuq
JeaLuq - avatar