摘要:
1.win10安装oracle 11g出现INS-13001环境不满足最低要求 更改E:\tools\oracle\oraclesetup\database\stage\cvu\cvu_prereq 添加 <OPERATING_SYSTEM RELEASE="6.2"> <VERSION VALUE 阅读全文
随笔分类 - 数据库
ROWNUM使用大于查不到值的问题(查询大于10小于21 范围内的数据)
2018-08-27 18:03 by HQS_blog, 1090 阅读, 收藏, 编辑
摘要:
转 https://blog.csdn.net/jquerys/article/details/52432770 第一种: select t.*, rownum as rid from ( select * from interface_log a,interface_key b,interface 阅读全文
oracle对查询到的字段进行遍历插入数据库
2018-08-16 16:43 by HQS_blog, 1901 阅读, 收藏, 编辑
摘要:
declare cursor cur_test is select inte_param_inteuuid from sjzx_interface_param group by inte_param_inteuuid; //声明一个游标cur_test ,其中inte_param_inteuuid 阅读全文