분류 전체보기 (204) 썸네일형 리스트형 SQL 코드카타 151 - Revising Aggregations - The Sum Function https://www.hackerrank.com/challenges/revising-aggregations-sum/problem?isFullScreen=true Revising Aggregations - The Sum Function | HackerRankQuery the total population of all cities for in the District of California.www.hackerrank.com FieldTypeIDNUMBERNAMEVARCHAR2(17)COUNTRYCODEVARCHAR(3)DISTRICTVARCHAR2(20)POPULATIONNUMBER CITY 테이블:ID : 테이블의 고유 키NAME : 도시의 이름COUNTRYCODE : 국가코드DISTRICT : 지역POP.. SQL 코드카타 150 - Revising Aggregations - The Count Function https://www.hackerrank.com/challenges/revising-aggregations-the-count-function/problem?isFullScreen=true Revising Aggregations - The Count Function | HackerRankQuery the number of cities having populations larger than 100000.www.hackerrank.com FieldTypeIDNUMBERNAMEVARCHAR2(17)COUNTRYCODEVARCHAR(3)DISTRICTVARCHAR2(20)POPULATIONNUMBER CITY 테이블:ID : 테이블의 고유 키NAME : 도시의 이름COUNTRYCODE : 국가코드DISTRICT .. SQL 코드카타 149 - The PADS https://www.hackerrank.com/challenges/the-pads/problem?isFullScreen=true The PADS | HackerRankQuery the name and abbreviated occupation for each person in OCCUPATIONS.www.hackerrank.com ColumnTypeNameStringOccupationString OCCUPATIONS 테이블:Name : 이름Occupation : 직업다음 두 결과 집합을 생성하세요:OCCUPATIONS 테이블에서 모든 이름을 알파벳순으로 정렬한 목록을 조회하세요. 각 이름 뒤에는 해당 직업의 첫 글자를 괄호로 묶어 표시하세요. 예: AnActorName(A), ADoctorName(D).. SQL 코드카타 148 - Type of Triangle https://www.hackerrank.com/challenges/what-type-of-triangle/problem?isFullScreen=true Type of Triangle | HackerRankQuery a triangle's type based on its side lengths.www.hackerrank.com ColumnTypeAIntegerBIntegerCInteger TRIANGLES 테이블:A, B, C는 각각 선분의 길이입니다.세 변의 길이를 사용하여 각 레코드의 유형을 식별하는 쿼리를 작성하세요. 테이블의 각 레코드에 대해 다음 중 하나의 문장을 출력하세요:Equilateral: 세 변의 길이가 모두 같은 삼각형입니다.Isosceles: 두 변의 길이가 같은 삼각형입니다.Sc.. SQL 코드카타 147 - Salaries https://www.hackerrank.com/challenges/salary-of-employees/problem?isFullScreen=true Employee Salaries | HackerRankPrint the names of employees who earn more than $2000 per month and have worked at the company for less than 10 months.www.hackerrank.com ColumnTypeemployee_idIntegernameStringmonthsIntegersalaryInteger Employee 테이블:employee_id : 테이블의 고유 키name : 직원의 이름months : 근무한 개월 수salary : 급여급여가.. SQL 코드카타 146 - Employee Names https://www.hackerrank.com/challenges/name-of-employees/problem?isFullScreen=true Employee Names | HackerRankPrint employee names.www.hackerrank.com ColumnTypeemployee_idIntegernameStringmonthsIntegersalaryInteger Employee 테이블:employee_id : 테이블의 고유 키name : 직원의 이름months : 근무한 개월 수salary : 급여직원 이름(name 속성)을 알파벳순으로 정렬하여 출력하는 쿼리를 작성하세요.select namefrom Employeeorder by name 알고리즘 코드카타 58 - 소수 만들기 (복습) https://school.programmers.co.kr/learn/courses/30/lessons/12977 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 문제 설명 주어진 숫자 중 3개의 수를 더했을 때 소수가 되는 경우의 개수를 구하려고 합니다. 숫자들이 들어있는 배열 nums가 매개변수로 주어질 때, nums에 있는 숫자들 중 서로 다른 3개를 골라 더했을 때 소수가 되는 경우의 개수를 return 하도록 solution 함수를 완성해주세요. 제한사항nums에 들어있는 숫자의 개수는 3개 이상 50개 이하입니다nums의 각 원소는 1 이상 1,00.. SQL 코드카타 145 - Higher Than 75 Marks https://www.hackerrank.com/challenges/more-than-75-marks/problem?isFullScreen=true Higher Than 75 Marks | HackerRankQuery the names of students scoring higher than 75 Marks. Sort the output by the LAST three characters of each name.www.hackerrank.com ColumnTypeIDIntegerNameStrtingMarksInteger STUDENTS 테이블:ID: 테이블의 고유 키Name : 학생의 이름Marks : 점수75점 보다 더 높은 점수를 받은 학생의 이름을 조회하는 쿼리를 작성하세요. 결과는 각 이름의 마지.. 이전 1 ··· 9 10 11 12 13 14 15 ··· 26 다음