如题!

解决方案 »

  1.   

    详细说明
    update tt  set 标志位=标志位+1 where 标志位<>0
      

  2.   

    update tb set 标志位=标志位+1 where 标志位<>0
      

  3.   

    update tb set 标志位=标志位+1 where 标志位!=0
      

  4.   

    在SQL版看到“遍历”二字,就气不打一处来
      

  5.   


    UPDATE TB 
    SET 标志位=标志位 + 1 
    WHERE 标志位 <> 0
      

  6.   


    update tb set 标志位=标志位+1 where 标志位<>0
      

  7.   

    update tb set 标志位=标志位+1 where 标志位!=0