728x90
반응형
- LAST_DAY(), TO_DATEchantleman사귄 날짜 구하기(오늘부터 1일)select round(sysdate - TO_DATE('2024-07-10','YYYY-MM-DD')+1 )사귄날짜 from dual;select round(sysdate - TO_DATE('2024-07-10')+1 )사귄날짜 from dual; 이번 달 얼마나 남았는지 확인하기select last_day(sysdate)-sysdate from dual;
- 2024-07-10 16:31:35
- 오라클 시간 설정chantlemanselect sysdate from dual;실행하면 아래와 같이 날짜데이터만 나오게 됩니다.만약 시간도 나오게 하고싶으면 도구-환경설정-데이터베이스-NLS 날짜형식에 HH24:MI:SS를 추가해주세요다시 실행하면 시간도 나옵니다.
- 2024-07-10 16:13:08
- width_bucket()chantlemanwidth_bucket(c,min,max,b): min에서 max 범위로 설정하고 b구간으로 나누어 c가 어느 구간에 속하는지 리턴select width_bucket(88,0,100,10) from dual;
- 2024-07-10 15:38:11
- mod(), remainder()chantlemanmod(c,n) remainder(c,n)둘 다 n으로 나눈 나머지를 구하는 함수입니다. mod: 원값 - (나눌 값* 나눈 값을 소수 첫째자리에서 버림한 값)=10 - 3*floor(10/3) remainder: 원값 - (나눌값*나눈 값을 소수 첫째자리에서 반올림한 값)=10 - 3*round(10/3)
- 2024-07-10 15:32:43
- 문자 맞히기 게임 예제chantlemanpublic void process() { // 문자 맞히기 게임 String[] words = {"apple", "banana", "orange", "grape", "lemon"}; int wordSel = (int)(Math.random()*words.length); //0~4 String word= words[wordSel]; System.out.println(word); System.out.println("=========================="); // 문자열 -> 문자 배열 // toCharArray char[] wordChars = word.toCharArray(); //문자열을 하나씩 쪼개서 배열로 만들어줌 int cnt=0; while(true) ..
- 2024-07-10 15:26:41
- trunc(), round()chantlemanround(number, [decimal_places]): 반올림number: 반올림할 숫자decimal_places: 반올림할 소수점 이하 자리수. 생략하면 0으로 간주 trunc(number, decimal_places): 절삭number : 자를 숫자decimal_places: 자를 소수점 이하 자리수. 생략하면 0으로 간주select round(345.666,2) 결과1, trunc(345.666,-1) 결과2 from dual;만약 round(345.666,-1)을 하면 소수점 전에서 즉, 5에서 반올림한다는 의미로 350이 나옵니다. trunc와 round는 날짜 값을 특정 날짜 단위로 자를 때도 쓰입니다.trunc(date,[date_format]);round(date, [date_for..
- 2024-07-10 15:16:16
- replace(), translate()chantleman두개 모두 문자열 내에서 특정 문자를 대체하기 위해 사용됩니다. translate(string, from_string, to_string) string: 원본 문자열from_string: 대체할 문자들의 집합to_string: 새로 대체될 문자들의 집합 from_string과 to_string의 길이는 동일해야 합니다.select translate('2009-02-28','0123456789-','ABCDEFGHIJK') result from dual; replace(string, search_string, replace_string)string: 원본 문자열search_string: 대체할 문자열replace_string: 새로 대체될 문자열select buyer_name, replace(buy..
- 2024-07-10 14:37:08
- 이클립스 디버깅chantleman확인하고싶은 변수가 있다면 해당 줄에 breakpoint를 잡고, 디버깅을 시작합니다. 오른쪽 위디버그 아이콘 선택 그럼 이런 창이 뜨는데 만약에 저 창이 안뜨면 저기에서 밑으로 쭉 나와있는 부분에서 창 아이콘 (restore)를 클릭합니다혹은 window - show view - variables에서 변수 확인 위에 바에서 디버그 아이콘을 누르면 실행이 되면서 variables에 이렇게 뜨는데 저기서 원하는 변수를 클릭하면 해당 변수의 값을 확인할 수 있습니다. 재생 단추를 누르거나 F6을 누르면서 next로 실행 과정 확인할 수 있습니다. f11 누르면 디버깅 시작f8 누르면 빠져나옴f6 누르면 다음줄 실행 만약 변수에 private 있으면 외부 클래스에서 접근을 못하니까 디버깅 확인 ..
- 2024-07-10 14:09:01
728x90
반응형
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)