摘要: import com.github.pagehelper.util.StringUtil;import org.dom4j.Document;import org.dom4j.DocumentException;import org.dom4j.DocumentHelper;import org.d 阅读全文
posted @ 2022-02-08 15:42 创嗨 阅读(890) 评论(0) 推荐(0) 编辑
摘要: 根据特殊字母批量删除后面的所有内容 字符.*,然后要打勾 去掉重复数据 阅读全文
posted @ 2022-01-19 10:01 创嗨 阅读(97) 评论(0) 推荐(0) 编辑
摘要: --查看进程 ps -ef --过滤进程 ps -ef |grep oracle.sh --拆分文件,把一个文件拆分为500000为data_ 这个文件 split -l 500000 xxx.txt -d -a 2 data_ --合并文件: cat grbdb_*.txt >> grbdb_ne 阅读全文
posted @ 2022-01-13 20:59 创嗨 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1.没有权限 使用:grant select,insert,xxx on 表 to x用户:把表授权给x用户 2.使用表的时候没有加:用户.表 比如:用户A下面的表,赋权给了用户B,但是还是找不到表,因为没有加上用户A.表 --在用户B中查询表要加上前缀 select * from A.table_ 阅读全文
posted @ 2022-01-12 21:52 创嗨 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1.首先右击视频,点击检查。2.找到右边对应的网页源码当中的video。 3.修改标签后的代码,增加一个id属性(不用此法应该也是可以的,知道的可以给个评论我也学习一下) 4.打开console,再下面的>处输入javascript的代码 chrome浏览器支持的最大倍速是16倍速,如果用的是其他的 阅读全文
posted @ 2022-01-08 13:21 创嗨 阅读(3787) 评论(0) 推荐(0) 编辑
摘要: 端口被占用,杀掉端口: wind+R输入cmd回撤,打开黑窗口: netstat -aon|findstr “8081” (查找指定端口)或者 netstat -ano (查找所有端口) 找到对应的数字 taskkill /pid 19312 -f (杀掉该进程) 阅读全文
posted @ 2021-12-29 21:00 创嗨 阅读(44) 评论(0) 推荐(0) 编辑
摘要: --oracle 日期转化怎么把时分 秒去掉了 to_char(日期, 'yyyy-mm-dd') 阅读全文
posted @ 2021-12-28 09:49 创嗨 阅读(19) 评论(0) 推荐(0) 编辑
摘要: left join select * from table t1 left join table2 t2 on t1.id=t2.id 如果t1有5条数据,t2没有数据,请问查出()条数据 inner join select * from table t1 inner join table2 t2 阅读全文
posted @ 2021-12-20 17:14 创嗨 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1.on 后面添加关联条件 where 添加的是添加查询 这个是一个左查询 使用的是 select a和b表的关联条件查出来的结果再去where 条件查询select * from event a LEFT JOIN event_time b on a.event_id=b.event_id whe 阅读全文
posted @ 2021-12-16 16:53 创嗨 阅读(2726) 评论(0) 推荐(0) 编辑