摘要: select 由mgr找empno的方向: connect by prior empno=mgr connect by mgr =prior empno 由empno找mgr的方向: connect by prior mgr=empno connect by empno= prior mgr dba 阅读全文
posted @ 2024-10-17 16:40 TryMyBest! 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.查看事务id select xid from v$transaction; 2.查看当前scn值 select current_scn from v$database; select dbms_flashback.get_system_change_number from dual; 3.查看锁 阅读全文
posted @ 2024-08-29 10:21 TryMyBest! 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、 declare e_emps_remaining exception; pragma exception_init(e_emps_remaining,-2292);begin delete from dept where deptno=20; exception when e_emps_rem 阅读全文
posted @ 2024-08-07 20:01 TryMyBest! 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 显示打印结果set serverout on; 1、 declare v_ename scott.emp1.ename%type;v_emp1 scott.emp1%rowtype;begin select ename into v_ename from emp1 where empno=7788; 阅读全文
posted @ 2024-08-01 17:02 TryMyBest! 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1.scp /opt/dataeye/scripts/wydms.py root@172.16.100.72:/opt/dataeye/scripts/ 2.从本地上传文件到服务器:rz 阅读全文
posted @ 2022-12-28 11:14 TryMyBest! 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Mysql数据安全备份 - 陈彦斌 - 博客园 (cnblogs.com) https://www.cnblogs.com/chenyanbin/p/14020293.html 阅读全文
posted @ 2022-12-07 14:19 TryMyBest! 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.gallery.pyecharts.org 2.seaborn.pydata.org 3.pyecharts.org 4.echarts.apache.org 5.matplotlib.org 阅读全文
posted @ 2021-10-10 13:53 TryMyBest! 阅读(404) 评论(0) 推荐(1) 编辑
摘要: 1.固定分隔符拆分的函数split_part(要拆分的字段,'*',2),取拆分后的第二部分值。 2.炸裂函数unnest(string_to_array(要炸裂的字段,'、')) 3.重要pg数据库除法不能到小数,要加上::float.例如 select 3/2 :: float 阅读全文
posted @ 2021-08-23 09:31 TryMyBest! 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: 分组合并group_concat 炸裂SELECT a,unnest(string_to_array(b,'、')) FROM "t" 阅读全文
posted @ 2021-06-20 08:53 TryMyBest! 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 如果表格第一行或者第一列没有数据,使用usedrange时,数组的第一行就不是从首行开始算啦 阅读全文
posted @ 2021-04-27 15:09 TryMyBest! 阅读(233) 评论(0) 推荐(0) 编辑