sqlserver 修改列类型
alter table (table_name) alter column (column name) (type)
当表中数据无法转换成新类型时,转换将失败。
最好在表建立之后数据填充之前进行修改。
Lordeo's Collections
alter table (table_name) alter column (column name) (type)
当表中数据无法转换成新类型时,转换将失败。
最好在表建立之后数据填充之前进行修改。