上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 205 下一页
摘要: 【代码】 package unsafesdf; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Collections; import java.util.HashSet; import j 阅读全文
posted @ 2022-08-22 20:23 逆火狂飙 阅读(67) 评论(0) 推荐(0)
摘要: 【实验目的】 验证i++方式生成序列号在多线程环境下的不确定性。 【实验类】 SnGenerator类,用于i++方式生成序列号 package com.hy.lab.nosynchonized; public class SnGenerator { int i=0; // 此函数如不加synchr 阅读全文
posted @ 2022-08-22 16:10 逆火狂飙 阅读(206) 评论(0) 推荐(0)
摘要: 【Oracle SQL】 一行流方式: select count(*) from all_tables where table_name=upper('your tableName') 层次化方式: select count(*) from all_tables where table_name=u 阅读全文
posted @ 2022-08-19 04:45 逆火狂飙 阅读(36) 评论(0) 推荐(0)
摘要: 【SQL】 select a.table_name as name,b.comments as remark from (select table_name from user_tables ) a inner join (select table_name,comments from user_t 阅读全文
posted @ 2022-08-16 22:08 逆火狂飙 阅读(219) 评论(1) 推荐(0)
摘要: 1.空值处理函数 1.1 nvl 用途:将第一参数(可能的)空值转换为第二参数 典型应用场景:A表左联到B表,如果某字段可能为空时。 例: SQL> select emp.name,nvl(dept.name,'梁山') as DEPT from emp 2 left join dept 3 on 阅读全文
posted @ 2022-08-16 08:26 逆火狂飙 阅读(562) 评论(0) 推荐(0)
摘要: 【数据库版本】 Oracle 19c 服务器版 【出错记录】 SQL> create user hy identified by 1234; create user hy identified by 1234 * 第 1 行出现错误: ORA-65096: 公用用户名或角色名无效 【出错原因】 or 阅读全文
posted @ 2022-08-12 03:45 逆火狂飙 阅读(5317) 评论(0) 推荐(0)
摘要: 用Html5/Canvas绘制蓝底白线六角雪花。 阅读全文
posted @ 2022-08-11 20:12 逆火狂飙 阅读(255) 评论(0) 推荐(0)
摘要: 【sql】 select a.column_name as name,a.column_id as order_num,b.comments as remark from (select column_name,column_id from user_tab_columns where table_ 阅读全文
posted @ 2022-08-11 20:06 逆火狂飙 阅读(320) 评论(1) 推荐(0)
摘要: 需求: 如题 代码: package newtname; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class Test { /** * 按旧表名+当前日期生成新表名 * 要求新 阅读全文
posted @ 2022-08-09 05:43 逆火狂飙 阅读(128) 评论(0) 推荐(0)
摘要: 读取: String value=ps.getString(columnIndex); 这个和字符型字段的读取一致。 写入: String value=......; ps.setCharacterStream(columnIndex,new StringReader(value),value.le 阅读全文
posted @ 2022-08-08 13:52 逆火狂飙 阅读(495) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 205 下一页