Reputation: 483
I have rows with a column called Flags and I want to delete a certain row when the number of flags reaches 100 in that column.
SELECT IF(Flags = 100, DELETE, "false") FROM posts WHERE ID = 6;
This obviously didn't work.
Upvotes: 2
Views: 3458