上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: round(字段,限制的尾数) 阅读全文
posted @ 2022-05-31 11:17 蓝海的bug本 阅读(160) 评论(0) 推荐(0) 编辑
摘要: ((integer)O.intvalue()); 阅读全文
posted @ 2022-05-31 09:09 蓝海的bug本 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 举个例子 select A B C from (a as A b as B c as C) UNION ALL (a as A c as C b as B) 因为前后顺序不同,B可能会被赋值c或b 阅读全文
posted @ 2022-05-27 15:21 蓝海的bug本 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ROW_NUMBER() OVER(PARTITION BY 分组字段 ORDER BY 排序字段) 阅读全文
posted @ 2022-05-26 08:43 蓝海的bug本 阅读(127) 评论(0) 推荐(0) 编辑
摘要: DBLink链接时是库.表@Link名 阅读全文
posted @ 2022-05-25 08:54 蓝海的bug本 阅读(3) 评论(0) 推荐(0) 编辑
摘要: create public database link (link名) connet to 用户名 identified by 密码 using '(DESCRIPTION =(ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = IP地址)(PORT = 阅读全文
posted @ 2022-05-24 08:40 蓝海的bug本 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 集合转数组: list.toArray(); 数组转集合: ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(数组)); 阅读全文
posted @ 2022-05-23 08:41 蓝海的bug本 阅读(28) 评论(0) 推荐(0) 编辑
摘要: begin DBMS_MVIEW.REFRESH(list=> '视图名',METHID => 'COMPLETE', refresh_after_errors => Ture); end; 阅读全文
posted @ 2022-05-20 08:49 蓝海的bug本 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 在存储过程中执行execute immediate 执行存储过程时,执行语句是 begin 语句; end; 如果需要带参数 execute immediate 执行变量 using in xxx, out xxx 在这之前把语句的参数替换为:1,:2 阅读全文
posted @ 2022-05-19 08:48 蓝海的bug本 阅读(117) 评论(0) 推荐(0) 编辑
摘要: PGSQL调用存储是select Oracle调用存储是call 阅读全文
posted @ 2022-05-18 08:37 蓝海的bug本 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页