字段:A,B,C若字段A是01,则取字段B为00,01,02,03的记录若字段A是02,则取字段B为00,01的记录在一句select中完成

解决方案 »

  1.   

    select *
    from table1
    where (a='01' and b in ('00','01','02','03'))
    or (a='02' and and b in ('00','01'))
      

  2.   

    那如何在字段中使用语句啊?select 字段A from table字段A的值是根据多个表算计出来的是否有select (select max(字段B) from table)into 字段A from table这样的结构?
      

  3.   

    有这样的结构,把'into'换成'as'
      

  4.   

    select *
    from tb
    where (A='01' and B in ('00','01','02','03')) or (A='02' and B in ('00','01'))
      

  5.   

    这样的结构有,但是据我现在的水平认为那个只能用在存储过程中。还有建议不要用不要用select * ,影响速度。
      

  6.   

    有没有这样的语法?select A as A1,A1+B as B from table就是在一句中引用刚as的别名A1
      

  7.   

    确实在MYSQL中不支持这种写法
      

  8.   

    select A, B, C
    from tb
    where A='01' and B in ('00','01','02','03')
    union
    select A, B, C
    from tb
    or A='02' and B in ('00','01')
      

  9.   

    select A, B, C
    from tb
    where A='01' and B in ('00','01','02','03')
    union
    select A, B, C
    from tb
    where A='02' and B in ('00','01') 
      

  10.   

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