01 2016 档案
摘要:select * from (select prdt_no, bal from TEST_PIVOT where date_code >='20151121' and date_code<='20151123' ) pivot (sum(bal) as bal for prdt_no in ('1...
阅读全文
摘要:/** * 字符串分割函数. * @param P_STR 待分割的字符串 * @param 分隔符 * @return 自定义table类型TY_STR_SPLIT. * 使用方法 select column_value from table(fn_split('1,2',',')) * @Aut...
阅读全文
摘要:/** * 判断str1是否包含str2. * @param str1 数组型字符串,以逗号分割 * @param str2 * @return 如果str1包含str2,则返回1,否则返回-1 * @Author: xDer */create or replace function exinstr...
阅读全文
摘要:控制层: 业务逻辑层: Dao层: 配置文件1:web.xml 配置文件2:applicationContext.xml 配置文件3:jdbc.properties 配置文件4:log4j.properties
阅读全文