博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql 流程函数
阅读量:5266 次
发布时间:2019-06-14

本文共 965 字,大约阅读时间需要 3 分钟。

create table salary (userid int,salary decimal(9,2));

-- mysql

insert into salary values(1,1000),(2,2000), (3,3000),(4,4000),(5,5000), (1,null),(2,500);
-- oracle
  insert all
    into salary values(1,1000)
    into salary values(2,2000)
    into salary values(3,3000)
    into salary values(4,4000)
    into salary values(5,5000)
    into salary values(1,null)
    into salary values(2,500)
    select * from dual;

-- if(value,t f)

  select salary, if(salary>2000,'high','low') hl from salary; --  oracke 不支持

-- case when ... then...else...end

  select salary, case when salary<=2000 then 'low' else 'high' end hl from salary;

  select salary, case when salary<=2000 then 'low' when salary is null then 'low' when salary<=4000 then 'min' else 'high' end hl from salary;

-- case ... when ... then...else...end

  select salary, case salary when 1000 then 'low' when 2000 then 'mid' else 'high' end hl from salary;

转载于:https://www.cnblogs.com/Mike_Chang/p/9311756.html

你可能感兴趣的文章
CAAnimation临时取消动画,永久取消动画
查看>>
1.2 基础知识——关于猪皮(GP,Generic Practice)
查看>>
迭代器Iterator
查看>>
java易错题----静态方法的调用
查看>>
福建省赛-- Common Tangents(数学几何)
查看>>
php建立MySQL数据表
查看>>
从头再来
查看>>
最简单的线程同步的例子
查看>>
结对编程总结 1175 1176
查看>>
php学习笔记(一)————php类的概念
查看>>
Centos 安装KScope1.6.2
查看>>
内核链表使用--删除链表节点
查看>>
eclipse启动无响应,停留在Loading workbench状态
查看>>
How exactly does Google AdWords work?
查看>>
多线程系列(4)使用多线程的安全问题
查看>>
C# 你可能没这样用过(逗逼方式) return
查看>>
弄明白Android 接口回调机制
查看>>
sharepoint中在blog中,发布post可以直接打开 word 发布!(Launch blog program to post用代码实现)...
查看>>
20175320 2018-2019-2 《Java程序设计》第10周学习总结
查看>>
javascript设计模式之单例模式
查看>>