728x90 반응형 개발141 jstl 함수 사용 방법 ${fn:endsWith(str1,"bd")} ${fn:length(text)} ${fn:length(text)} 1) substring(str, index1, index2) : str 의 index1 부터 index2 - 까지의 문자열 리턴2) substringAfter(str1, str2) : str1 에서 str2 를 찾아서 그 후의 부분문자열 리턴3) substringBefore(str1, str2) : str1 에서 str2 를 찾아서 그 전의 부분문자열 리턴4) toUpperCase(str) : 모든 소문자를 대문자로 치환한 값을 리턴5) toLowerCase(str) : 모든 대문자를 소문자로 치환한 값을 리턴6) trim(str) : 문자열에서 앞뒤 공백 문자를 제거한 결과를 리턴7) re.. 2015. 10. 8. jstl 변수 선언 jstl-1.2.jar를 lib에 추가후 사하다. 변수선언 및 간단한 계산 ${a} ${b} ${b+c} ${d} 2015. 10. 8. oracle sql function,procedure 프로시저 -FUNCTION은 반드시 출력(return 값)해야하지만 프로시저는 반드시 출력할 필요는 없다. (1) 사원번호를 입력받아 급여를 출력하는 프로시저set serveroutput oned procTest1 create or replace procedure procTest1(v_empno in number)isv_sal number;beginselect sal into v_sal from emp where empno=v_empno;dbms_output.put_line(v_sal);end;/@ procTest1execute procedure(7900); (2) 새로운 부서번호와 부서,위치를 생성하는 프로시저(단,같은 부서번호가 없을 때만 생성) set serveroutput oned procDept.. 2015. 10. 8. oracle 중간점검 ed empCnt create or replace function empCnt(v_number in number)return varchar2isv_cnt number;v_empcnt varchar2(100);v_page number;beginselect count(*) into v_cnt from emp;v_page :=ceil(v_cnt/v_number);v_empcnt := v_cnt || '/'|| v_page;return v_empcnt;end;/ ------------------------------------------- create or replace function empno_mgr(v_empno emp.empno%type)return varchar2isv_mgr varchar2(100);.. 2015. 10. 7. 이전 1 ··· 22 23 24 25 26 27 28 ··· 36 다음 728x90 반응형