--此数据库中TStaffer是视图,Photo字段是image类型,null
insert into TStaffer(Staffer_ID, Name, Photo) 
select top 1 Staffer_ID, Name, Photo
from [192.168.1.7].test.dbo.TStaffer
执行此段语句:操作数类型冲突: int 与 image 不兼容----此数据库中TStaffer是表,Photo字段是image类型,null
insert into TStaffer(Staffer_ID, Name, Photo) 
select top 1 Staffer_ID, Name, Photo
from [192.168.1.8].test.dbo.TStaffer
执行此段语句 OK
--创建视图语句
create view TStaffer as
select
......
null as Photo,
......
from table
数据库是 MS-SQL Server 2008
向大家请教