摘要: ####需求,当符合条件1 修改 A表 或 新增 A表 oracle 写法 语法: merge into 目标表 a using 源表 b on(a.条件字段1=b.条件字段1 and a.条件字段2=b.条件字段2 ……) when matched then update set a.更新字段=b 阅读全文
posted @ 2021-05-28 16:06 iullor 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1,当一个客户端访问ws服务时,开启一个线程A 处理请求, 2,而后在线程A中 再开启一个线程B 处理业务方法 Future<?> submit = threadPoolTaskExecutor.submit(monitorRunnable); submit.get() 阻塞 A线程 3,submi 阅读全文
posted @ 2021-05-25 10:08 iullor 阅读(1360) 评论(0) 推荐(0) 编辑
摘要: ###GIT 远程clone 代码 ####1,ssh方式 前提,需要配置ssh免密认证 clone 指定分支的代码 git clone ssh://xxx.git --branch branchName clone 指定分支的代码 带用户名密码 git clone http://username: 阅读全文
posted @ 2021-05-15 15:43 iullor 阅读(47) 评论(0) 推荐(0) 编辑
摘要: select * from (select * from 表名 where 条件 order by 排序日期 desc) where rownum=1; select * from (select * from TABLE where STATE = 3 order by TIME desc) wh 阅读全文
posted @ 2021-02-20 11:18 iullor 阅读(1015) 评论(0) 推荐(0) 编辑
摘要: 谢谢老哥 : https://www.cnblogs.com/xiaoxinzi/p/9535866.html ###1:安装axios(建议安装淘宝镜像) npm install axios ###2:项目导入 npm install --save axios vue-axios ###3:页面导 阅读全文
posted @ 2020-08-08 17:33 iullor 阅读(1638) 评论(0) 推荐(0) 编辑
摘要: 感谢老哥,解决了我的疑惑 https://www.cnblogs.com/yscit/p/10376005.html https://www.cnblogs.com/ybhcolin/archive/2013/04/17/3026646.html ###一、概述 Oralce中的任务有2种:Job和 阅读全文
posted @ 2020-07-27 11:01 iullor 阅读(3027) 评论(0) 推荐(0) 编辑
摘要: ###第一种 函数 wm_content('待转列名称') 11g 往后,不推荐使用 ###实例 多表关联时可以使用 (SELECT wm_concat(nvl(B1.OPERA_CODE,'a')) AS OPERA_CODE FROM OPERATION_NAME B1 WHERE T1.OPE 阅读全文
posted @ 2020-07-16 23:41 iullor 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 一、查询的逻辑执行顺序 复制代码 (1) FROM left_table (3) join_type JOIN right_table (2) ON join_condition (4) WHERE where_condition (5) GROUP BY group_by_list (6) WIT 阅读全文
posted @ 2020-04-13 09:53 iullor 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 本文基于mysql做测试 使用声明式事务的注解@Transactional,可以完成事务的添加。 事务的传播范围 Propagation属性用来枚举事务的传播行为。所谓事务传播行为就是多个事务方法相互调用时,事务如何在这些方法间传播。Spring支持7种事务传播行为,默认为REQUIRED。 //默 阅读全文
posted @ 2020-03-07 15:10 iullor 阅读(2214) 评论(0) 推荐(0) 编辑
摘要: 常用数据字典 可以使用desc 查看结构 dba_users dba_tablespaces user_users user_tablespaces dba_data_files #文件数据,可查看表空间的实际存储位置 USER_CONSTRAINTS; #查询数据字典可以看到某个表中约束的信息 # 阅读全文
posted @ 2020-02-09 13:10 iullor 阅读(275) 评论(0) 推荐(0) 编辑