Jcat
寵辱不驚,閑看庭前花開花落~~
BlogJava
首頁
新隨筆
新文章
聯(lián)系
聚合
管理
posts - 173,comments - 67,trackbacks - 0
<
2006年12月
>
日
一
二
三
四
五
六
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
迷路ing
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
留言簿
(13)
給我留言
查看公開留言
查看私人留言
隨筆分類
(171)
Business Intelligence(11)
Database(49)
English(19)
Financing(4)
Java(23)
Linux(18)
Non-technique(12)
VBA(6)
貓樣年華(29)
相冊
BIT
隨筆配圖
Doc_Database
oracleadvice
PostgreSQL SQL Syntax and Use
SQL語言教學
Doc_Java
jsref
jstl
many egs
struts tags
XML 指南
xmlhttprequest
Favorites
愛書
Java牛人們
cpedia
oldjavaman
江南白衣,帥!
車東
透明思考
My friends
Momi is my pet, miao~~
哥哥
好貓一只^_^
小二
有個性的少平
謝謝,師兄走好!
風風
瘋風風
Oracle牛人們
oracledba
oracle空間
Search Engine
luncen in martrix
北京大學計算語言學研究所
搜索
積分與排名
積分 - 114515
排名 - 512
最新評論
1.?Soila Lilly
評論內(nèi)容較長,點擊標題查看
--pauldavidsung@gmail.com
2.?re: Wide Screen Resolution: Dell700m+FC3+1280x800
最近將Dell 700m安裝成紅帽5,寬屏的解決不需要第1、2步驟。 封存多時的小七又煥發(fā)活力。
--Jcat
3.?re: 圣斗士十二宮總結(jié)
我日!
--sure_dandan
4.?re: 基金
在銀行買基金相當于代銷,在基金公司買基金相當于直銷,一般情況下,費率如下:銀行柜臺 > 網(wǎng)銀 > 基金公司網(wǎng)站
--Jcat
5.?re: synnex : 從2點面到7點
呵呵 我正準備去這公司 去呆兩年
--劉毅
multi-insert: first vs all
Most INSERT statements are the single-table variety, but Oracle also supports a multiple-table INSERT statement. With a multitable insert, you can make a single pass through the source data and load the data into more than one table.
[
ALL
|
FIRST
]
WHEN condition THEN insert_into_clause [values_clause]
[insert_into_clause [values_clause]]...
[WHEN condition THEN insert_into_clause [values_clause]
[insert_into_clause [values_clause]]...
]...
[ELSE insert_into_clause [values_clause]
[insert_into_clause [values_clause]]...
]
If a WHEN condition evaluates to TRUE, the corresponding INTO clause is executed. If no WHEN condition evaluates to TRUE, the ELSE clause is executed.
The keyword ALL tells the database to check each WHEN condition. On the other hand, the keyword FIRST tells the database to stop checking WHEN conditions after finding the first TRUE condition.
--
test?case
create
?
table
?insert_test_case
(
id?
number
(
1
)
)
create
?
table
?insert_test01
(
id?
number
(
1
)
)
create
?
table
?insert_test02
(
id?
number
(
1
)
)
create
?
table
?insert_test03
(
id?
number
(
1
)
)
insert
?
into
?insert_test_case?
values
(
1
)
insert
?
into
?insert_test_case?
values
(
2
)
insert
?
into
?insert_test_case?
values
(
3
)
insert
?
into
?insert_test_case?
values
(
4
)
insert
?
into
?insert_test_case?
values
(
5
)
--3 rows inserted
insert
?first?
??
when
?id
=
1
?
then
?
into
?insert_test01?
values
(id)
??
when
?id
=
2
?
then
?
into
?insert_test02?
values
(id)
??
when
?id
=
3
?
then
?
into
?insert_test03?
values
(id)
select
?id?
from
?insert_test_case
--3 rows inserted
insert
?
all
??
when
?id
=
1
?
then
?
into
?insert_test01?
values
(id)
??
when
?id
=
2
?
then
?
into
?insert_test02?
values
(id)
??
when
?id
=
3
?
then
?
into
?insert_test03?
values
(id)
select
?id?
from
?insert_test_case
--
1 rows inserted
insert
?first
??
when
?id
=
1
?
then
?
into
?insert_test01?
values
(id)
??
when
?id
=
1
?
then
?
into
?insert_test02?
values
(id)
??
when
?id
=
1
?
then
?
into
?insert_test03?
values
(id)
select
?id?
from
?insert_test_case
--3 rows inserted
insert
?
all
??
when
?id
=
1
?
then
?
into
?insert_test01?
values
(id)
??
when
?id
=
1
?
then
?
into
?insert_test02?
values
(id)
??
when
?id
=
1
?
then
?
into
?insert_test03?
values
(id)
select
?id?
from
?insert_test_case
posted on 2006-12-13 13:32
Jcat
閱讀(273)
評論(0)
編輯
收藏
所屬分類:
Database
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發(fā)表評論。
網(wǎng)站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關(guān)文章:
Oracle 11g Release2 新特性
Win - 啟動綠色版MYSQL
分區(qū)表 - 主鍵為本地索引
DB2基礎命令
數(shù)據(jù)庫、實例 on Oracle/DB2
行鏈接 和 行遷移
切換TEMP表空間
物化視圖
觸發(fā)器
IPC extproc PLSExtPro
Copyright ©2025 Jcat Powered By
博客園
模板提供:
滬江博客
主站蜘蛛池模板:
99久久精品日本一区二区免费
|
美女被爆羞羞网站在免费观看
|
亚洲Av无码国产情品久久
|
在线综合亚洲中文精品
|
最近中文字幕mv免费高清电影
|
亚洲国产成a人v在线观看
|
99爱视频99爱在线观看免费
|
国产AV无码专区亚洲A∨毛片
|
久久免费观看国产精品
|
久久国产精品亚洲综合
|
84pao强力永久免费高清
|
亚洲熟妇色自偷自拍另类
|
久久经典免费视频
|
亚洲国产欧美一区二区三区
|
免费日韩在线视频
|
国产高清对白在线观看免费91
|
亚洲伦理中文字幕
|
日韩免费毛片视频
|
国产精品免费大片一区二区
|
亚洲一区AV无码少妇电影☆
|
9277手机在线视频观看免费
|
亚洲国产精品综合久久20
|
免费一级毛片清高播放
|
一级人做人a爰免费视频
|
亚洲Av熟妇高潮30p
|
九九九精品成人免费视频
|
亚洲狠狠婷婷综合久久
|
亚洲综合精品网站
|
51在线视频免费观看视频
|
亚洲jizzjizz少妇
|
久久亚洲综合色一区二区三区
|
aa在线免费观看
|
亚洲国产精品自在线一区二区
|
精品久久久久久久久免费影院
|
国产精品亚洲一区二区三区
|
亚洲人成亚洲人成在线观看
|
在线观看免费高清视频
|
亚洲阿v天堂在线2017免费
|
亚洲精品无码久久久久久久
|
亚洲AV蜜桃永久无码精品
|
91精品国产免费入口
|