锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久久久亚洲精品无码网址色欲,午夜亚洲国产成人不卡在线,国产偷国产偷亚洲高清在线http://www.tkk7.com/MagicStone/category/14348.htmlJavaDeveloperzh-cnFri, 09 Apr 2010 03:07:16 GMTFri, 09 Apr 2010 03:07:16 GMT60Trouble Shooting of Oraclehttp://www.tkk7.com/MagicStone/archive/2010/04/08/317714.htmlJavaCoffeJavaCoffeThu, 08 Apr 2010 06:08:00 GMThttp://www.tkk7.com/MagicStone/archive/2010/04/08/317714.htmlhttp://www.tkk7.com/MagicStone/comments/317714.htmlhttp://www.tkk7.com/MagicStone/archive/2010/04/08/317714.html#Feedback0http://www.tkk7.com/MagicStone/comments/commentRss/317714.htmlhttp://www.tkk7.com/MagicStone/services/trackbacks/317714.html
much as possible because they inhibit the scalability of applications.
The result of a parse operation is a parent cursor and a child cursor stored in the library cache.
The key information related to a parent cursor is the text of a SQL statement.
Therefore,
several SQL statements share the same parent cursor if their text is exactly the same
]]>group by 褰撲腑浣跨敤 Rollup鍜孋ube,Grouping,Grouping Sethttp://www.tkk7.com/MagicStone/archive/2009/06/23/283785.htmlJavaCoffeJavaCoffeTue, 23 Jun 2009 09:27:00 GMThttp://www.tkk7.com/MagicStone/archive/2009/06/23/283785.htmlhttp://www.tkk7.com/MagicStone/comments/283785.htmlhttp://www.tkk7.com/MagicStone/archive/2009/06/23/283785.html#Feedback0http://www.tkk7.com/MagicStone/comments/commentRss/283785.htmlhttp://www.tkk7.com/MagicStone/services/trackbacks/283785.html
select deptno,job,avg(sal),max(sal) from emp group by rollup( deptno,job);
緇熻絎竴涓淮搴︾殑鐨勬誨拰銆?br />
select deptno,job,avg(sal),max(sal) from emp group by cube( deptno,job);
鍦ㄧ粺璁$涓涓淮搴︾殑鍩虹涓婏紝鍦ㄧ粺璁$浜屼釜緇村害绔栧垪鐨勭患鍚堛?br />
select deptno,job,avg(sal),max(sal) ,grouping(deptno),grouping(job) from emp group by cube( deptno,job);
紜畾緇熻緇撴灉鏄惁鐢ㄥ埌浜嗙壒瀹氱殑鍒椼?br />
select deptno,job,avg(sal),max(sal) from emp group by GROUPING SETS( deptno,job);
鏄劇ず澶氱鍒嗙粍緇熻鐨勭粨鏋溿?/p>
]]>insert 澶氳鎻掑叆http://www.tkk7.com/MagicStone/archive/2009/06/23/283711.htmlJavaCoffeJavaCoffeTue, 23 Jun 2009 03:37:00 GMThttp://www.tkk7.com/MagicStone/archive/2009/06/23/283711.htmlhttp://www.tkk7.com/MagicStone/comments/283711.htmlhttp://www.tkk7.com/MagicStone/archive/2009/06/23/283711.html#Feedback0http://www.tkk7.com/MagicStone/comments/commentRss/283711.htmlhttp://www.tkk7.com/MagicStone/services/trackbacks/283711.html
insert into <tabler>[(column,[column,...])]values(value,[value,....])
浣跨敤default 鎻掑叆鏁版嵁錛屽湪values褰撲腑浣跨敤default浼氭彃鍏ラ粯璁ゅ鹼紝鎴栬匩ULL
2銆佷嬌鐢ㄥ瓧鏌ヨ鎻掑叆鏁版嵁銆?br />
INSERT INTO <TABLE> subquery.
INSERT ALL insert_into_clause [value clause]subquery
INSERT conditional_insert_clause subquery
insert all
when deptno = 10 then into dept10
when deptno = 20 then into dept20
else into others
select * from emp;
INSERT FIRST(濡傛灉鍏堝墠鐨勬暟鎹凡緇忚浣跨敤榪囷紝閭d箞鍦ㄥ悗緇綋涓垯涓嶄細鍐嶄嬌鐢ㄨ繖浜涙暟鎹?
when deptno = 10 then into dept10
when deptno = 20 then into dept20
else into others
select * from emp;