摘要: import urllib.request import urllib.parse # 请求地址 url = 'http://www.baidu.com' url_img_video = '' # 影音文件 headers = { 'User-Agent':'Mozilla/5.0 (Windows 阅读全文
posted @ 2024-01-30 09:11 admin_jh 阅读(2) 评论(0) 推荐(0) 编辑
摘要: select table_name,column_name from user_tab_columns where column_name = 'RVU02'; 阅读全文
posted @ 2021-09-15 18:36 admin_jh 阅读(876) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/136787.htm 阅读全文
posted @ 2020-11-05 20:06 admin_jh 阅读(961) 评论(0) 推荐(0) 编辑
摘要: 1、进入jdk的目录:D:\javaTool\jdk\jdk1.8.0_77\jre\lib\security 2、keytool -import -alias name -file C:\Users\my\Desktop\易派客\zs\name.cer -keystore cacerts -tru 阅读全文
posted @ 2020-07-06 17:37 admin_jh 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 过程: call procedures_name(p1,p2,...);-- 调用存储过程 select * from user_procedures;-- 获取有关存储过程信息 Show errors for procedure procedure_name;-- 查看存储过程中的错误 函数: s 阅读全文
posted @ 2020-02-19 14:43 admin_jh 阅读(125) 评论(0) 推荐(0) 编辑
摘要: set serveroutput on;--打开服务器输出 --declare 声明变量;“:=”是赋值符号 declare v_width integer; v_height integer :=2; v_area integer := 6; v_name store.products.name% 阅读全文
posted @ 2020-02-18 20:36 admin_jh 阅读(147) 评论(0) 推荐(0) 编辑
摘要: create flashback archive test_archive tablespace exmple cuota 10 M retention 1 day;--创建闪回归档,最大存储10M数据,保存1天 alter table user.tablename flashback archiv 阅读全文
posted @ 2020-02-18 20:22 admin_jh 阅读(141) 评论(0) 推荐(0) 编辑
摘要: select * from user_views;--查询所有视图 阅读全文
posted @ 2020-02-18 20:04 admin_jh 阅读(112) 评论(0) 推荐(0) 编辑
摘要: create [unique] index index_name on table_name(column_name[,columnname2...]) tablespace tab_space;--创建索引 select * from all_indexs;--获取所有索引信息 阅读全文
posted @ 2020-02-18 19:59 admin_jh 阅读(82) 评论(0) 推荐(0) 编辑
摘要: create sequesce seq_name [start with start_num][increment by increment_num][maxvalue maxnum]--创建序列 select * from all_sequences;--读取所有序列 阅读全文
posted @ 2020-02-18 19:47 admin_jh 阅读(133) 评论(0) 推荐(0) 编辑