I am trying to alter a column's default value using
alter table table_Name alter MODIFY col_Name tinyint(1) NOT NULL DEFAULT 0;
After executing the above command, I see 25 rows affected. But when I run
select * from table_Name;
I still see old value.
Moreover when I insert new value, I still see the default getting set as 1.Why is that?
When you set a default (as mentioned in the comments) old rows do NOT get affected.
Your original rows will stay as they are. To change them you need to do an
UPDATE
queryNow as to why your new rows aren't updating. Your syntax is wrong. This is the correct syntax
There is no second alter in after the
table_name