I have a table with 3 fields, one of them is "status". status is an ENUM with possible content 'a', 'b' or 'c'.
I need to find a way to deny any update on all rows having "status" = 'b' not even the root user should be allowed to update these rows. So its like making this row "final". Update should be allowed if status = a or status = c.
Is there any way to do this? Thanks!