随笔分类 -  Oracle

摘要:1、查询删除的表数据 select * from AT_PP_WORKINSTRUCTION as of timestamp to_timestamp('2018-09-28 11:30:00', 'yyyy-mm-dd hh24:mi:ss') where Inst_Name_s like 'GL 阅读全文
posted @ 2021-08-18 17:23 聖凯 阅读(46) 评论(0) 推荐(0) 编辑
摘要:SQL语句: 在java持久层中: 1、Repository 2、Mapper 阅读全文
posted @ 2021-07-29 15:52 聖凯 阅读(181) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202107/2172047-20210729154733481-622220804.png) 阅读全文
posted @ 2021-07-29 15:49 聖凯 阅读(826) 评论(0) 推荐(0) 编辑
摘要:分层逻辑: 例如: 页码page,显示数量size; 每页开始:(page - 1) * size 每页结束:page * size 可参考:https://blog.csdn.net/use_admin/article/details/83622414 阅读全文
posted @ 2021-07-29 09:43 聖凯 阅读(29) 评论(0) 推荐(0) 编辑
摘要:(decode(?1,'',1, 0) = 1) or department_id = ?1 decode()相当于三元表达式 decode(?1,'',1, 0):传入的参数是否为'',是返回1,否返回0; decode(?1,'',1, 0) = 1:返回的是1,与1做比较,等于为true,不执 阅读全文
posted @ 2021-06-22 14:08 聖凯 阅读(453) 评论(0) 推荐(0) 编辑
摘要:1、NVL(expr1,expr2[,expr3]) 1.1、NVL(expr1,expr2),替换NULL值,如果expr1为NULL值,则返回expr2的值,否则返回expr1的值。 该函数要求两个参数类型一致至少相互之间可以进行隐式的转换。 1.2、NVL(expr1,expr2,expr3) 阅读全文
posted @ 2021-06-17 16:02 聖凯 阅读(47) 评论(0) 推荐(0) 编辑
摘要:一、格式化 1、格式化日期:to_char(字段,'转换后的格式') select room_no,to_char(create_date_time,'yyyy-mm-dd') as 创建时间 from BUILDING_ROOM 2、格式化小数位数:cast(expression as data_ 阅读全文
posted @ 2021-05-20 11:24 聖凯 阅读(135) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/bingrong/p/4289924.html 阅读全文
posted @ 2020-12-28 09:11 聖凯 阅读(37) 评论(0) 推荐(0) 编辑