Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张像
|name| |a | ....
namecolumn 具有数据类型是ntext我想创建一个具有其他数据类型的新列,text并且它具有与 column 相同的数据name。
name
ntext
text
怎么做 谢谢
您应该使用varchar(max)而不是text. 以下添加列并设置值:
varchar(max)
alter table t add newcol varchar(max); update t set newcol = name;