日期:2014-05-16  浏览次数:20815 次

mssql 怎么样把某列的数据删除?
成功把acc转到mssql了,不过某列的数据好像出错了,现在我想把出错的列数据删除,不会语法……

book_view表

id(自增长)   title   cn  t1  t2  t3 


t2的数据出错了,清空 t2 的数据




还有……怎样一次性替换列的数据?

------解决方案--------------------
update book_view set t2=null


update book_view set t1=replace(t1,"xxxx","aaaaa")

------解决方案--------------------
update book_view set t2 =''
------解决方案--------------------
update table set field=''