应是这样吧
update A set E =  F
where E like '6.%'
and F lkie '6.%'
试试。

解决方案 »

  1.   

    试一下下面的:update A 
    set A.E = temp_1.F 
    from (select F from A where F = '6.%') as temp_1
    where A.F = '6.%'
      

  2.   

    谢谢各位。
    mittee的方法我试过了,没成功
    用datawindow试试吧,希望各位高手再给个简单的解决办法
      

  3.   

    搞错了,我洗澡的时候想到的,应该是如下:
    update A 
    set A.E = temp_1.F 
    from (select F from A where F = '6.%') as temp_1
    where A.id  = temp_1.id
    楼主你以为呢??
      

  4.   

    mittee(最后一条大白鲨) 的方法应该不行,
    还是做一个dw,程序中用循环把
      

  5.   

    我用datawindow做了,但有一个错误提示,为:
        Row changed between retrieve and update.    No changes made to database.这是哪里的事?我找不到了。求各位帮帮忙,看到这样的提示能帮我找
    到事哪里的错吗?
      

  6.   

    问题已经解决,谢谢各位给出主意。最后的原因是
    select 字段时没有把关键字段全选
    谢谢各位。