帮帮忙,谢谢

来源:6-12 case...when语句

qq_无言_51

2016-08-15 10:47

select entrylane case

when entrylane<=10 then '普通车',when entrylane>10 then '专用车道' end as '车道分类'

  from exit2015070020203;

未找到from的关键字


写回答 关注

1回答

  • yan_muke
    2016-08-15 14:21:15

    select  entrylane

             , case

                   when entrylane<=10 then '普通车'

                   when entrylane>10 then '专用车道' 

                   end as '车道分类'

      from exit2015070020203;


Oracle数据库开发必备利器之SQL基础

为你带来Oracle开发必备的sql基础,为后续课程学习打下好的基础

160642 学习 · 641 问题

查看课程

相似问题