SQL update问题 我要 修改某列数的前几位,怎么修改 比如: 
学号 
8808123456 
8808123457 
8808123458
8808123459
修改8808为 8818questiong 2id wc
1 2
2 3
4 5现在wc全加上2
update table set wc =wc+2
未成功

解决方案 »

  1.   

    update table set 学号=concat('8818',mid(学号,5,6)) where 学号 like '8808%'
      

  2.   

    错误提示是什么?
       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。   
      

  3.   


    update table set 学号=concat('8818',mid(学号,5,6))
    可以吧?
    好汉,还有第一个问题
    id wc
    1 2
    2 3
    4 5现在wc全加上2
    update table set wc =wc+2
    未成功
      

  4.   

    Error
    SQL query:UPDATE label SET KILL =  'kill+1' WHERE id =352MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'kill='kill+1'  where id=352' at line 1 
      

  5.   


    你的语句到底是什么?!UPDATE label SET KILL =  kill+1 WHERE id =352
      

  6.   

    update table set wc =wc+2没错  
    报什么了没更新