随笔分类 - oracle
摘要:查询oracle的dbLink select owner,object_name from dba_objects where object_type='DATABASE LINK';#查询出dba用户下的dblink select * from user_objects t where t.obj
阅读全文
摘要:一、字符函数 ①大小写控制函数 lower:将字符转换为小写 upper:将字符转换为大写 initcap:字符的首字母大写 ②字符控制函数 二、数字函数 ①round: 四舍五入 round(45.926,2) —>45.93 trunc(45.926,2) —> 45.92 mod(1600,3
阅读全文