I have created the table and now I need to set 3 columns to require value without inserting again? I tryed typing:
ALTER TABLE _tablename_
MODIFY COLUMN _columnname_ , _anotherone_ , .... NOT NULL;
but it doesn't work that way.
It works perfectly fine if I do it for single column.