SQL更新表的字段

Oracle:

alter table CAPIAGENTLOG modify(clientcode nvarchar2(150))

SQL Server:

alter table CAPIAGENTLOG alter column clientcode varchar(150)
原文地址:https://www.cnblogs.com/sshoub/p/3270230.html