05 2021 档案
摘要:需求关联日志,呈现以下效果,使用 ROW_NUMBER() OVER(PARTITION BY ) 函数 排序分组函数 ID 1 2 3 4 5 效果 | 1 | 2 | | | | | 2 | 3 | | 3 | 4 | | 4 | 5 | 日志表图 换床的日志记录 结果表图 ,期待结果 换床前床
阅读全文
摘要:####需求,当符合条件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
阅读全文
摘要:1,当一个客户端访问ws服务时,开启一个线程A 处理请求, 2,而后在线程A中 再开启一个线程B 处理业务方法 Future<?> submit = threadPoolTaskExecutor.submit(monitorRunnable); submit.get() 阻塞 A线程 3,submi
阅读全文
摘要:###GIT 远程clone 代码 ####1,ssh方式 前提,需要配置ssh免密认证 clone 指定分支的代码 git clone ssh://xxx.git --branch branchName clone 指定分支的代码 带用户名密码 git clone http://username:
阅读全文