demo07.sql
来自「Expert Oracle Database Architecture 9i a」· SQL 代码 · 共 17 行
SQL
17 行
create table t
( num_type number,
float_type binary_float,
double_type binary_double
)
/
insert /*+ APPEND */ into t
select rownum, rownum, rownum
from all_objects
/
commit;
select sum(ln(num_type)) from t;
select sum(ln(float_type)) from t;
select sum(ln(double_type)) from t;
select sum(ln(cast( num_type as binary_double ) )) from t;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?