138 Views
You can change the datatype of the column with ALTER statement. You may think that it will never change the column values. But there are some cases where altering a datatype can cause changing the value of the column. Consider the following table create table test(id int, dates varchar(100)) insert into...
0 comments