algorithm (114) 썸네일형 리스트형 [programmers] MySQL - Lv.2 가격대 별 상품 개수 구하기 (group by) 문제 풀이 SELECT truncate(price, -4) as price_group, count(*) as products from product group by price_group order by price_group 노트 숫자 함수 중 자릿수를 버리는 함수는 TRUNCATE TRUNCATE(숫자, 자릿수) 의 형태로 쓰인다. 자릿수가 양수인 경우 해당 자릿수에서 소수점 버린다. 자릿수가 음수인 경우 소수점 이하를 버리고 정수 뒤에서부터 지정된 자릿수까지 0으로 처리된다. 버림 할 자릿수를 반드시 입력해주어야 한다. [programmers] Java - Lv.0 각도기 문제 풀이 class Solution { public int solution(int angle) { if(angle < 90) { return 1; } else if(angle == 90) { return 2; } else if(angle < 180) { return 3; } else { return 4; } } } [programmers] Java - Lv.0 두 수의 차 문제 풀이 class Solution { public int solution(int num1, int num2) { return num1 - num2; } } [programmers] Java - Lv.0 두 수의 곱 문제 풀이 class Solution { public int solution(int num1, int num2) { return num1 * num2; } } [programmers] Java - Lv.0 두 수의 합 문제 풀이 class Solution { public int solution(int num1, int num2) { return num1 + num2; } } [programmers] MySQL - Lv.2 성분으로 구분한 아이스크림 총 주문량 (group by) 문제 풀이 SELECT b.ingredient_type, sum(a.total_order) TOTAL_ORDER from first_half a join icecream_info b on a.flavor = b.flavor group by b.ingredient_type order by TOTAL_ORDER [programmers] MySQL - Lv.1 과일로 만든 아이스크림 고르기 (select) 문제 풀이 SELECT a.flavor from first_half a join icecream_info b on a.flavor = b.flavor where a.total_order > 3000 and b.ingredient_type = 'fruit_based' order by a.total_order desc [programmers] MySQL - Lv.1 12세 이하인 여자 환자 목록 출력하기 (select) 문제 풀이 SELECT pt_name, pt_no, gend_cd, age, coalesce(tlno, 'NONE') tlno from patient where age 이전 1 ··· 3 4 5 6 7 8 9 ··· 15 다음