本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- johnsmith9th
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
- jveqi
- java-007
- sunj
最新文章列表
CASE expression of SQLite
CASE x WHEN w1 THEN r1 WHEN w2 THEN r2 ELSE r3 END
CASE WHEN x=w1 THEN r1 WHEN x=w2 THEN r2 ELSE r3 END
swith case需要注意的地方 一定要加break
public class Client {
public static void main(String[] args) {
System.out.println("2 = "+toChineseNumberCase(2));
}
// 把阿拉伯数字翻译成中文大写数字
public static String toChineseNumberCase(int n) {
...
oracle中 顺序,条件,循环等一些实例
select * from employees emp where emp.salary = 3000
--if语句---------------
begin
if (10>50) then
dbms_output.put_line('da yu');
else
dbms_output.put_line('bu da yu');
end if;
end;
sele ...
oracle 中的 CASE
oracle 中的 CASE 可以作为一个选择控制语句,可以根据条件从多个分支选择相应的执行动作,内部至少存在一个分支。也可以作为表达式使用,返回一个值。
CASE 的语法格式
CASE [selector]
when 表达式1 then
执行语句1;
when 表达式2 then
执行语句2;
when 表达式3 then
执行语句3 ...
PL/SQL(oracle)2_控制结构
控制结构
一、分支结构
1、if
注意:elsif 和else If
if(条件)then
... ...
elsif
... ...
end if ;
2、case
注意:
case语句中的条件选择器 ...