摘要:
private static String execute() throws ExecutionException, InterruptedException {// 定义线程池 ExecutorService exc = Executors.newFixedThreadPool(20);// 定义 阅读全文
摘要:
like 变成ILIKE就可以 阅读全文
摘要:
//获取 from data的post 传值 public String getinput(HttpServletRequest request){ Map map=request.getParameterMap(); Set keSet=map.entrySet(); String s=""; f 阅读全文
摘要:
select uuid from(select *,row_number() over(partition by productid order by time_stamp desc)rn from "automation".data)t where rn=1 阅读全文
摘要:
连上数据库 执行ALTER USER postgres WITH PASSWORD 'postgres'; 然后重启服务 查询数据库占用空间大小 select pg_size_pretty(pg_database_size('postgres')); 阅读全文
摘要:
fgm_automation 空间 upms_log_id_seq 名字 CREATE SEQUENCE "fgm_automation"."upms_log_id_seq" INCREMENT 1 MINVALUE 1 MAXVALUE 9223372036854775807 START 1 CA 阅读全文
摘要:
ALTER TABLE test ADD test NVARCHAR(100) NOT NULL DEFAULT '默认值'; ALTER TABLE `test` DROP COLUMN `test` 阅读全文
摘要:
这样循环出来,所有的值都会变成最后一个原因是 ArrayList集合里存的是一个对象的引用。当我们改变对象的值时,之前添加的也会随之改变。List cptlist=new ArrayList(); Map cptmap=new HashMap(); for(String cptRange : CPT 阅读全文
摘要:
extract(epoch from to_timestamp(to_char("",'yyyy-MM-DD hh24:mi:ss'),'yyyy-MM-DD hh24:mi:ss'))*1000 as time 阅读全文
摘要:
String s = DigestUtils.sha1Hex("") 阅读全文