Is it possible to create a generated MySQL column that runs a condition on other columns?
For example: column "a" - type boolean column "b" - type date generate column "c" that implements the logic:
if (a == false) || (a == true && b < NOW()) {
return true;
} else {
return false;
}