프로그래머스34 2] 프로그래머스 상위 n개 레코드 SELECT NAME FROM ANIMAL_INS ORDER BY DATETIME LIMIT 1; SQL SELECT TOP, LIMIT, ROWNUM SQL TOP, LIMIT or ROWNUM Clause The SQL SELECT TOP Clause The SELECT TOP clause is used to specify the number of records to return. The SELECT TOP clause is useful on large tables with thousands of records. Returning a large number of records can impact pe www.w3schools.com 2020. 11. 2. 1] 프로그래머스 여러 기준으로 정렬하기 programmers.co.kr/learn/courses/30/lessons/59404 SELECT ANIMAL_ID, NAME,DATETIME FROM ANIMAL_INS ORDER BY NAME, DATETIME DESC; 2020. 11. 2. 0] 프로그래머스 어린 동물 찾기 SELECT ANIMAL_ID, NAME FROM ANIMAL_INS WHERE INTAKE_CONDITION != 'Aged' ORDER BY ANIMAL_ID; 2020. 11. 2. ★55] 프로그래머스 실패율 programmers.co.kr/learn/courses/30/lessons/42889# 코딩테스트 연습 - 실패율 실패율 슈퍼 게임 개발자 오렐리는 큰 고민에 빠졌다. 그녀가 만든 프랜즈 오천성이 대성공을 거뒀지만, 요즘 신규 사용자의 수가 급감한 것이다. 원인은 신규 사용자와 기존 사용자 사이에 스 programmers.co.kr 1. 스테이지 별 실패율값을 구하고 2. 실패율 기준으로 정렬하여 3. 그 순서대로 스테이지 번호를 반환한다. 1. #include #include #include #include using namespace std; bool cmp(const pair& a, const pair& b) { if (a.second == b.second) return a.first > b.fi.. 2020. 10. 25. 이전 1 ··· 3 4 5 6 7 8 9 다음