전체 글415 SELECT OPTION 의 Value와 Text 값 1. 첫번째 방법 var selectElement = document.getElementById("selectID"); var selectValue = selectElement.value; var selectText = selectElement.options[selectElement.selectedIndex].text 2. 두번째 방법 var selectText = $('selectboxId').options[$('selectboxId').selectedIndex].text 2010. 3. 17. ORACLE 월별 통계 (1~12월 표현) 0. 단순히 0~12월 까지 표현 해줌. SELECT LPAD(LEVEL, 2, '0') LV FROM DUAL CONNECT BY LEVEL 2010. 3. 15. 일별 통계 작성법(ORACLE) DICT, LAST_DAY FUNCTION 사용 dict : dictionary 테이블 1. 등록된 데이터만 나오게 할 경우 SELECT TO_CHAR(TO_DATE(JRNL_DT,'yyyy-mm-dd'),'dd') AS JRNL_DT, SUM(TAKEOUT_AMOUNT) AS TAKEOUT_AMOUNT FROM HCTB_MEDICAL_INJ_PRE GROUP BY TO_CHAR(TO_DATE(JRNL_DT,'yyyy-mm-dd'),'dd') EX) JRNL_DT TAKEOUT_AMOUNT 10 48 11 2 12 1 2. 1~31일 까지 모두 나오게 할때, 데이터가 없는경우 0 ( DICT 테이블을 사용하여 임시로 데이터를 생성한다.) 2.1 UNION ALL 방식 SELECT JRNL_DT, SUM(.. 2010. 3. 13. javascript NaN. infinity isNaN(x) isNaN() checks its parameter "x" to see if it's the value "NaN" (not a number)- an illegal number. The function returns true if "x" is NaN, and false if not. A common example of NaN is 0 divided by 0. This function is required to detect NaN, as using equality operators (== or ===) won't do. isFinite(x) Determines whether a number is finite. Returns false if x is +infinity, -infinity, or.. 2010. 3. 2. 이전 1 ··· 95 96 97 98 99 100 101 ··· 104 다음 728x90