728x90
반응형
- [프로그래머스 코딩테스트] oracle Lv.3 있었는데요 없었습니다chantlemanselect i.animal_id, i.namefrom animal_ins i, animal_outs owhere o.animal_id = i.animal_idand i.datetime>o.datetimeorder by i.datetime
- 2024-11-28 13:40:54
- [프로그래머스 코딩테스트] oracle Lv.3 오랜 기간 보호한 동물(1)chantlemanselect name, datetimefrom (select animal_id, name, datetime from animal_ins where animal_id not in (select animal_id from animal_outs) order by datetime)where rownum
- 2024-11-28 11:59:19
- [프로그래머스 코딩테스트] oracle Lv.3 오랜 기간 보호한 동물(2)chantlemanselect animal_id, namefrom (select o.animal_id, o.name, (o.datetime-i.datetime) from ANIMAL_OUTS o,ANIMAL_INS i where o.animal_id=i.animal_id order by (o.datetime-i.datetime) desc)where rownum
- 2024-11-28 11:51:30
- [프로그래머스 코딩테스트] oracle Lv.3 헤비 유저가 소유한 장소chantlemanSELECT id, name, host_idfrom places awhere (select count(host_id) from places b where a.host_id = b.host_id) >=2order by id
- 2024-11-23 16:10:18
- [프로그래머스 코딩테스트] java Lv.3 조건별로 분류하여 주문상태 출력하기chantlemanSELECT ORDER_ID, PRODUCT_ID, to_char(out_date,'yyyy-mm-dd') as out_date, case when to_number(to_char(out_date,'yyyymmdd'))20220501 then '출고대기' else '출고미정' end as 출고여부from FOOD_ORDERorder by order_id;
- 2024-11-19 16:45:28
- [프로그래머스 코딩테스트] oracle Lv.3 즐겨찾기가 가장 많은 식당 정보 출력하기chantlemanSELECT FOOD_TYPE, REST_ID, REST_NAME, FAVORITESfrom REST_INFOwhere (food_type,favorites) in (select food_type, max(favorites) from rest_info group by food_type)order by food_type desc;
- 2024-11-19 13:43:01
- [프로그래머스 코딩테스트] oracle Lv.3 카테고리별 도서 판매량 집계하기chantlemanSELECT b.CATEGORY, sum(s.sales) as TOTAL_SALESfrom book b, book_sales swhere b.book_id = s.book_idand to_char(SALES_DATE,'yyyy-mm') ='2022-01'group by b.categoryorder by CATEGORY
- 2024-11-07 12:41:49
- [프로그래머스 코딩테스트] oracle Lv.3 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기chantlemanSELECT to_number(to_char(start_date,'mm')) as MONTH, CAR_ID, count(*) as RECORDSfrom CAR_RENTAL_COMPANY_RENTAL_HISTORY where to_char(start_date,'yyyy-mm-dd') between '2022-08-01' and '2022-10-31' group by to_char(start_date,'mm'), car_idhaving car_id in (select car_id from CAR_RENTAL_COMPANY_RENTAL_HISTORY where to_char(start_date,'yyyy-mm-dd') between '2..
- 2024-11-07 12:19:10
728x90
반응형
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)