摘要:
oracle 生成随机日期+时间 SELECT to_date(TRUNC(DBMS_RANDOM.VALUE(to_number(to_char(to_date('20110101','yyyymmdd'),'J')),to_number(to_char(to_date('20221231','y 阅读全文
摘要:
https://www.jianshu.com/p/fab356d68ae2 grant connect,resource to xinomonitor; 发现不能进行断点调试,然后授如下权限 grant debug any procedure to xinomonitor;grant debug 阅读全文
摘要:
alter table t_user_channel_info change update_dttm update_dttm timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP(); ALTER TABLE t_user_info MODIFY COLUMN u 阅读全文
摘要:
https://www.cnblogs.com/yw0219/p/5939558.html 记录exit和return的用法 exit用来跳出循环 loop IF V_KBP IS NULL THEN EXIT; END IF; end loop; return跳出存储过程 loop IF V_KB 阅读全文
摘要:
rabbitMQ 重试机制 spring.rabbitmq.listener.simple.retry.max-attempts=5 最大重试次数spring.rabbitmq.listener.simple.retry.enabled=true 是否开启消费者重试(为false时关闭消费者重试,这 阅读全文
摘要:
oracle update left join 写法 (修改某列,条件字段在关联表中) 案例: E:考核表 X,:用户表 USERNAME 关联 需求:修改营业部最高分 分析:通过登录账号的营业部ORG_ID 更新E表,E表中无ORG_ID 字段,X表中可以关联. 写法一: UPDATE USER_ 阅读全文
摘要:
在Ubuntu 18.04使用snap安装eclipse软件报时错: inuxidc@linuxidc:~$ snap install --classic eclipse error: snap "eclipse" has "install-snap" change in progress 其实就是 阅读全文
摘要:
delete from tabname t1 where rowid <> (select min(rowid) from tabname t2 where t1.col_name = t2.col_name and t1.id != t2.id); 阅读全文
摘要:
select group_concat(USERIDCARDHASH separator ';') from ( select a.*,'1' grouid from transact a left join userinfo b on a.USERIDCARDHASH = b.USERIDCARD 阅读全文