목록Tool (62)
홍동이의 성장일기
Department Highest Salary - LeetCode Can you solve this real interview question? Department Highest Salary - Table: Employee +--------------+---------+ | Column Name | Type | +--------------+---------+ | id | int | | name | varchar | | salary | int | | departmentId | int | +--------------+--- leetcode.com [풀이 1] 다중컬럼 서브쿼리 select d.name Department , e.name Employee , e.salary Salary from employee..
Employees Earning More Than Their Managers - LeetCode Can you solve this real interview question? Employees Earning More Than Their Managers - Table: Employee +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | | salary | int | | managerId | int | +------ leetcode.com Write an SQL query to find the employees who earn more than their managers..
Customers Who Never Order - LeetCode Can you solve this real interview question? Customers Who Never Order - Table: Customers +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | name | varchar | +-------------+---------+ In SQL, id is the primary key colu leetcode.com Write a solution to find all customers who never order anything. Return the result table in..
Reformat Department Table - LeetCode Can you solve this real interview question? Reformat Department Table - Table: Department +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | revenue | int | | month | varchar | +-------------+---------+ (id, month) is leetcode.com Reformat the table such that there is a department id column and a revenue column for each ..
안녕하세요 👋 오늘은 2020년 취득한 컴활2급과 2022년에 취득한 컴활1급 합격 후기에 대해 이야기해보겠습니다. 1. 컴활 2급 공부법 2. 컴활 1급 공부법 1급과 2급 모두 취득한 이유 대학생에게 필수라는 컴활! 2급은 취득하기 쉽다는 이야기를 듣고 2학년이 끝나는 방학을 이용하여 자격증을 땄습니다. 나중에 과동기랑 이야기하다 알게된 사실,, 3학년부터 본격적으로 복수전공을 했던 경영학과 졸업요건에 컴활 1급이 있다는 것😑 대학생 여러분,, 자격증 따기 전에 꼭 주전공, 복수전공 졸업요건을 확인하세요 ㅎ 컴활 2급 정보 시험방법 시험과목 출제형태 시험시간 필기시험 컴퓨터 일반 스프레드시트 일반 객관식 40문항 40분 실기시험 스프레드시트 실무 컴퓨터 작업형 40분 합격결정기준 - 필기: 과목당 4..
안녕하세요 👋 6월 10일에 진행된 제49회 SQL 개발자 (SQLD) 합격 후기입니다. 📍시험정보 데이터자격시험 SQL(Structured Query Language)은 데이터베이스를 직접적으로 액세스할 수 있는 언어로, 데이터를 정의하고(Data Definition), 조작하며(Data Manipulation), 조작한 결과를 적용하거나 취소할 수 있고(Transaction Con www.dataq.or.kr 구성 2과목 문항수 및 배점 필기 50문항 (단답형 10문항 이내) 1과목: 10문항 (20점) 2과목: 40문항 (80점) 시험시간 90분 (1시간 30분) 응시자격 제한 없음 합격기준 총점 60점 이상 과락기준 과목별 40% 미만 취득 1과목: 4문항 2과목: 16문항 한번의 불합격 바야흐로..
Friend Requests II: Who Has the Most Friends - LeetCode Can you solve this real interview question? Friend Requests II: Who Has the Most Friends - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com with cte_unionall as( select requester_id as id from RequestAccepted union all select accepter_i..
Type of Triangle | HackerRank Query a triangle's type based on its side lengths. www.hackerrank.com 테이블 이름: triangles equilateral: 정삼각형 lsosceles: 이등변 삼각형 scalene: 삼각형 (세변의 길이가 모두 다름) not a triangle: 두변의 합이 나머지 한 변보다 크지 않음 ⭐ (=작거나 같음) select case when A = B and B = C then 'Equilateral' when A + B
The PADS | HackerRank Query the name and abbreviated occupation for each person in OCCUPATIONS. www.hackerrank.com 테이블 1: 이름 (직업 맨앞글자) 테이블 2: There are a total of '직업 수' '직업명's. 직업수가 같은 경우 알파벳이 먼저인 직업이 앞으로 나오도록하기 select concat(name, '(', left(occupation, 1), ')') from occupations order by name, left(occupation, 1); select concat('There are a total of ', count(occupation), ' ' ,lower(occupation),..
Combine Two Tables - LeetCode Can you solve this real interview question? Combine Two Tables - Table: Person +-------------+---------+ | Column Name | Type | +-------------+---------+ | personId | int | | lastName | varchar | | firstName | varchar | +-------------+---------+ personId i leetcode.com select p.firstname, p.lastname, a.city, a.state from person p left join address a on p.personId = ..