导航
您当前的位置:首页 > 计算机 > 计算机认证
问题:

高效找答案就上答案窝。欢迎访问daanwo.com
[单选题]对于雇员表(EMP)中的员工薪水(SAL)进行分级,3000元以上的为A级,2000元以上到3000

Aselect sal,decode(sal>3000,'A',sal>2000,'B','C') grade from emp;

Bselect sal,decode(sal,3000,'A',2000,'B','C') grade from emp;

Cselect sal,(case when sal>3000 then 'A' when sal>2000 then 'B' else 'C' end) grade from emp;

Dselect sal,(if sal>3000 then 'A' elsif sal>2000 then 'B' else 'C' end if) grade from emp;

高效找答案就上答案窝。欢迎访问daanwo.com
答案解析:

相关问题
关于我们 | 用户指南 | 版权声明 | 给我留言 | 联系我们 | 积分商城 | 答案求助 | 网站地图
Copyright © 2024 www.daanwo.com All Rights Reserved