摘要: SELECT sess.sid,sess.serial#,lo.oracle_username,lo.os_user_name,ao.object_name,lo.locked_mode FROM v$locked_object lo,dba_objects ao,v$session sess wh 阅读全文
posted @ 2023-08-18 17:12 我没有出家 阅读(12) 评论(0) 推荐(0) 编辑
摘要: /** * @Author: szc * @Description: 从枚举中获得容器bean * @Date: 2023/3/7 19:56 */ public enum GetBeanEnum2 { SERVICE_A("serviceA","服务A"){ // private Applicat 阅读全文
posted @ 2023-08-18 17:02 我没有出家 阅读(115) 评论(0) 推荐(0) 编辑
摘要: listagg(); 多条数据合并某列数据 listagg(role_name,'分割符') within group (order by 根据哪些字段排序) over(partition by 分组字段) row_number(): 根据某个字段分组并且取到每个类型时间最大的数据 a='1' 意思 阅读全文
posted @ 2023-08-18 16:59 我没有出家 阅读(14) 评论(0) 推荐(0) 编辑
摘要: // 工具类@Component public class RedisLock { @Autowired private RedisTemplate redisTemplate; // 时间轮异步定时执行 private HashedWheelTimer timer = new HashedWhee 阅读全文
posted @ 2023-08-18 16:32 我没有出家 阅读(26) 评论(0) 推荐(0) 编辑
摘要: show user 查看当前用户select * from tab; 查看当前数据库中的表desc 表名 ; 查看表结构 between and 包含开头结尾 函数: months_between(a,b) 两时间间隔月数 a大时间 b小时间add_months(a,b) 添加月数,a时间 b月数数 阅读全文
posted @ 2022-03-31 23:07 我没有出家 阅读(32) 评论(0) 推荐(0) 编辑
摘要: // import java.math.RoundingMode;// import java.text.NumberFormat; double d= 1.345233; //四舍五入 保留两位小数 System.out.println(String.format("%.2f",d)); //不四 阅读全文
posted @ 2022-03-30 22:00 我没有出家 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 可视化界面和命令行切换快捷键:ctry+alt+F2 命令关机:shutdown -h now 立刻关机(root用户使用) 阅读全文
posted @ 2022-03-22 20:31 我没有出家 阅读(24) 评论(0) 推荐(0) 编辑
摘要: select table_name, table_comment, create_time, update_time from information_schema.tables-- where table_schema = (select database()) -- 当前数据库 select c 阅读全文
posted @ 2022-03-19 11:25 我没有出家 阅读(223) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_24280125/article/details/119275109 array.join(separator) 。拼接返回字符串 参数 separator,可选。指定要使用的分隔符 阅读全文
posted @ 2022-02-14 10:47 我没有出家 阅读(64) 评论(0) 推荐(0) 编辑
摘要: <el-form-item label="附件" prop="attachment"> <el-upload :multiple="false" :limit="1" :on-exceed="handleExceed" :http-request="uploadFiles" :on-remove=" 阅读全文
posted @ 2021-11-04 16:27 我没有出家 阅读(342) 评论(0) 推荐(0) 编辑