我需要更新一条记录的状态,这个状态由这个表里面的另外一个id的状态决定:
大概是这样:
update student set status=1 where id=1 and (当id为2的学生status=1)
前提是and 后面不能接select子句呀,我的神,我不会写sql语句了。
如果update student set status=1 where id=1 and (id=2 and status=1)
=========显然没有id既为1又为2的条目。
大家看看怎么搞定这个吧。
思考了1一天一夜了。
谢谢。

解决方案 »

  1.   

     (不要高估你的汉语表达能力或者我的汉语理解能力)
       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式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)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。   
      

  2.   

    update student set status=1 where id=1 and (当id为2的学生status=1)
    学生1的状态有学生2当前的状态决定,where后面不能使用select子句。
    所以我不知道怎么构造语句了。
    谢谢
      

  3.   

    update student set status=1 where id=1 and exists  (select 1 from student  where 当id为2的学生status=1)
      

  4.   

    update student set status=1 where id=1 or (id=2 and status=1)
      

  5.   

    id为2的status也改变了。我希望仅id为1的状态变化。
    其实根本就是id为1的状态跟id为2的没有关系了,如果用or。
      

  6.   

    贴建表及插入记录的SQL,及要求结果出来看看
      

  7.   

    两条update 有 nuion all 连接