丁保国的博客

收集整理工作生活,点点滴滴

  :: :: 博问 :: 闪存 :: :: :: :: 管理 ::

2009年3月17日

摘要: ---------数学函数 1.绝对值 S:select abs(-1) value O:select abs(-1) value from dual 2.取整(大) S:select ceiling(-1.001) value O:select ceil(-1.001) value from dual 3.取整(小) S:select floor(-1.001) value... 阅读全文
posted @ 2009-03-17 15:59 丁保国 阅读(211) 评论(0) 推荐(0) 编辑

摘要: create table l ( i integer primary key, v varchar(20) ); insert into l values (1, 'one' ); insert into l values (2, 'two' ); insert into l values (3, 'three'); insert into l values (4, 'four' );... 阅读全文
posted @ 2009-03-17 15:19 丁保国 阅读(199) 评论(0) 推荐(0) 编辑

摘要: A traditional outer join A "normal" join finds values of two tables that are in a relation to each other. In most cases, this relation is equality (=), but it can also be all sorts of operations th... 阅读全文
posted @ 2009-03-17 15:18 丁保国 阅读(295) 评论(0) 推荐(0) 编辑