上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 205 下一页
摘要: 代码: package com.hy.lab.tenmillion; import java.sql.*; import java.util.ArrayList; import java.util.List; public class BigTbBuilder { private static fi 阅读全文
posted @ 2022-06-07 23:23 逆火狂飙 阅读(100) 评论(2) 推荐(0) 编辑
摘要: 如果现存一张表emp67,要本地复制一张新表可以用: create table emp67_1 as select * from emp67; 执行效果是: SQL> select * from emp67_1; ID NAME AGE 1 杨志 21 2 鲁达 22 3 林冲 23 4 武松 24 阅读全文
posted @ 2022-06-07 22:38 逆火狂飙 阅读(925) 评论(0) 推荐(0) 编辑
摘要: 代码: List<String> list1= Arrays.asList("1","2","3","4"); list1.stream().forEach(System.out::println); 输出: 1 2 3 4 END 阅读全文
posted @ 2022-06-07 06:58 逆火狂飙 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 硬件环境:Thinkpad t440p 4G 软件环境:Oracle11g 运行环境:Idea控制台程序 建表: create table bulk63( id number(20), f01 nvarchar2(20), f02 nvarchar2(20), f03 nvarchar2(20), 阅读全文
posted @ 2022-06-03 16:40 逆火狂飙 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 代码: package com.hy.lab.itera; import java.util.Iterator; import java.util.NoSuchElementException; public class MyArr<T> implements Iterable<T>, Iterat 阅读全文
posted @ 2022-06-03 09:29 逆火狂飙 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 代码: SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; TO_CHAR(SYSDATE,'YY 2022-06-03 06:46:13 SQL> select to_date('2022-06-03','yyyy-mm- 阅读全文
posted @ 2022-06-03 06:58 逆火狂飙 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: 【创建数据资产索引】 curl -H "Content-Type: application/json" -XPUT 'localhost:9200/asset' -d' { "mappings" : { "properties" : { "sn" : { "type" : "integer" }, 阅读全文
posted @ 2022-06-02 06:32 逆火狂飙 阅读(1989) 评论(0) 推荐(0) 编辑
摘要: 【Mapping的用处】 mapping会把JSON文档文档映射成Lucene所需要的扁平格式一个mapping属于一个索引的type每个文档都属于一个Type一个type又一个mapping定义7.0开始,不需要在mapping定义中指定type信息,因为默认每个索引只有一个type叫"_doc" 阅读全文
posted @ 2022-06-01 20:37 逆火狂飙 阅读(934) 评论(0) 推荐(0) 编辑
摘要: 还得使用XML注释 ,SQL注释--.Java注释 // /* */都会导致错误。 阅读全文
posted @ 2022-06-01 06:31 逆火狂飙 阅读(437) 评论(0) 推荐(0) 编辑
摘要: Html转义字符: HTML转义字符 字符 意义 &nbsp; 不断行的空格 &ensp; 半方大的空格 &emsp; 全方大的空格 &lt; 小于 < &gt; 大于 > &amp; &符号 &quot; 双引号" &copy; 版权符号© &reg; 已注册商标® &trade; 商标(美国)T 阅读全文
posted @ 2022-06-01 06:09 逆火狂飙 阅读(100) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 205 下一页
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东