I'm trying to set up a table row that does not need a value (no error message if empty) but will insert a default value if empty, as in:
ALTER TABLE tablename ALTER rowname TINYINT UNSIGNED NOT NULL;
ALTER TABLE tablename ALTER rowname SET DEFAULT 0;
I set it up this way, but the value inserted is still NULL.
Is this even possible?
Thanks!