sql 流程函数

Posted bailaowu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 流程函数相关的知识,希望对你有一定的参考价值。

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;















以上是关于sql 流程函数的主要内容,如果未能解决你的问题,请参考以下文章

数据库原理与应用(SQL Server)笔记 流程控制语句系统内置函数

Oracle 中 流程控制函数 decode用法

视图 触发器 函数 流程控制 存储过程 SQL注入问题

MySQL源码探索02SQL命令总体执行流程

mysql存储过程,函数,已经流程控制案例

mysql基础教程-----事务视图存储过程和函数流程控制