摘要:
create extension tablefunc; 阅读全文
摘要:
SQL中的in、not in语句遇到null时的坑点_not in null_shenzhou_yh的博客-CSDN博客 postgres 判断null_PGSQL实现判断一个空值字段,并将NULL值修改为其它值_幼生期的博客-CSDN博客 阅读全文
摘要:
update "pce"."p_ttl_data" set val=jsonb_set(val::jsonb,'{AWARDING_STATUS_APPROVAL_STATUS,val}','"Conditional approved"') WHERE val -> 'AWARDING_STATUS 阅读全文
摘要:
参考自:SpringBoot 集成websocket_清泉影月的博客-CSDN博客,WebSocket中利用service层交互数据库_戒烟的李白的博客-CSDN博客_websocketservice 核心依赖 <dependency> <groupId>org.springframework.bo 阅读全文
摘要:
1 /** 2 * @param source 待压缩文件/文件夹路径 3 * @param destination 压缩后压缩文件路径 4 * @return 压缩多个文件夹 5 */ 6 public static boolean toZip(String source, String dest 阅读全文
摘要:
1:pgsql 一次不能超过32767 个对象 阅读全文
摘要:
create table dim_date asselect date(t) as day from generate_series('2000-01-01'::date,'2099-12-31', '1 days') as t; 阅读全文
摘要:
encodeURIComponent() 函数_百度百科 (baidu.com)//需要前端使用 encodeURIComponent(value); 编码,后端使用URLDecoder.decode(titles[i], "UTF-8"); 解码String title=URLDecoder.de 阅读全文
摘要:
mybatis 判断是否包含指定字符串 (在前面加 !是不包含)<if test='!bae.contains("null") '> </if> 阅读全文
摘要:
select CASE WHEN position('eee' in 'abcdeeeee')>0 THEN 1 END 阅读全文