I have added ENUM column in my table, and all my rows that are already existing have got a NULL value. The only problem is that I don't get how to select and upgrade them to what I need.
I've tried something like UPGRADE users Status='User' where Status=NULL and other options like "... where Status='' " but none of these bring me the solution.
I want to change every NULL value to 'User'.
'User'one of the enumerated values? If it is then do an UPDATE.