08 2022 档案

摘要:select listagg (id, ',') WITHIN GROUP (ORDER BY id) id from tableName start with id = xxx connect by prior id = fat_id; 阅读全文 »
posted @ 2022-08-31 18:17 小秦的开发梦 阅读(91) 评论(0) 推荐(0) 编辑
摘要:select * from tableName start with id = xxx connect by prior id = pid; 阅读全文 »
posted @ 2022-08-31 18:15 小秦的开发梦 阅读(25) 评论(0) 推荐(0) 编辑
摘要:一、数量统计方法 下面分情况介绍下这 3 个命令的使用方法。 1、统计当前目录下文件的个数(不包括目录) ls -l | grep "^-" | wc -l 2、统计当前目录下文件的个数(包括子目录) ls -lR| grep "^-" | wc -l 3、查看某目录下文件夹(目录)的个数(包括子目 阅读全文 »
posted @ 2022-08-30 10:32 小秦的开发梦 阅读(18055) 评论(0) 推荐(2) 编辑
摘要:select TABLE_NAME ,COLUMN_NAME from user_tab_columns where Table_Name IN ( select table_name from user_tables where ( table_name like 'xxx%' OR table_ 阅读全文 »
posted @ 2022-08-26 10:36 小秦的开发梦 阅读(161) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python import os import re import json def get_all_file(dir_path,target_file): ''' 获取dir_path下所有扩展名在target_file内的文件完整路径 :param dir_path 阅读全文 »
posted @ 2022-08-26 10:34 小秦的开发梦 阅读(148) 评论(0) 推荐(0) 编辑
摘要:删除 :del eg:del C:\Users\65102\Desktop\xjwjj\test2\ctlog.ini 递归删除可以 rd 复制:copy xxx xxx; eg:copy C:\Users\65102\Desktop\xjwjj\ctlog.ini C:\Users\65102\D 阅读全文 »
posted @ 2022-08-26 10:10 小秦的开发梦 阅读(39) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示