2014年10月26日

SQL内连接-外连接join,left join,right join,full join

摘要: 1、创建测试表test1及test2SQL> CREATE TABLE TEST1(ID NUMBER,NAME VARCHAR2(20));表已创建。SQL> create table test2(id number, country varchar2(10));表已创建。INSERT INTO ... 阅读全文

posted @ 2014-10-26 17:39 遠離塵世の方舟 阅读(355) 评论(0) 推荐(0)

函数nvl,nvl2,nullif,coalesce

摘要: NVL: Converts a null value to an actual valueNVL2:If expr1 is not null, NVL2 returns expr2. If expr1 is null, NVL2 returns expr3. The argument expr1 c... 阅读全文

posted @ 2014-10-26 12:56 遠離塵世の方舟 阅读(316) 评论(0) 推荐(0)

导航