在这一子查询或聚合表达式中,text、ntext 和 image 数据类型无效我自己写的

解决方案 »

  1.   

    declare @strBody varchar(3000)
    set @strBody=(select body from T_bak where id=1753)
    update T set body=@strBody  where id=1753这是我自己写的,提示
    在这一子查询或聚合表达式中,text、ntext 和 image 数据类型无效
      

  2.   

    update t1 set id = (select * from t2 where id = 10) where id = 10
      

  3.   

    update a set a.a = b.a,a.b=b.b,a.c=b.c FROM t1 a,t2 b where a.id=b.id
      

  4.   

    在这一子查询或聚合表达式中,text、ntext 和 image 数据类型无效。
      

  5.   

    update t1 set a=t2.a,b=t2.b,c=t2.c from t1,t2 where t1.id=t2.id and t1.id=10
      

  6.   

    怎么都不看清楚才回答呢???a,b,c3个字段都是text类型的
      

  7.   

    update t1 set a=t2.a,b=t2.b,c=t2.c from t2 where t1.id=t2.id and t1.id=10