日期:2014-05-18  浏览次数:20461 次

如何改变sqlserver中varbinary类型的记录
如何改变sqlserver中varbinary类型的值,比如有doc_file字段,如何增加记录?

------解决方案--------------------
--何改变sqlserver中varbinary类型的值,比如有doc_file字段,如何增加记录?

create table t(col varbinary(8000))
insert into t values(0x6524)
insert into t values(0x65)

select * from t
drop table t