select a  from try  
union all
 select a  from try  where b > 35

解决方案 »

  1.   

    union all 可能会出现重复记录
    如果不要重复记录可以:
    select a from
    (
    select a,1 as id  from try  
    union 
    select a,2 as id  from try  where b > 35
    ) b order by id
      

  2.   

    union all 按原始顺序排序
      

  3.   

    问题解决,特别感谢tangqijun199(撒旦.搏一搏,3角变4角.冲刺5角中……)
      

  4.   

    union all 按原始顺序显示
    union 去掉重复项,order by asc(升序)