본문 바로가기

SQL8

[SQL 코테 풀이] HackerRank - The Report (DIFFICULTY : Medium, SKILL : Intermediate, MySQL) 문장으로 된 문제를 SQL 코드로 구현하는 것도 문제이지만, 제한시간 안에 푸는 것도 문제이다. 3일이라는 짧은 시간 안에 익숙해져야 하기 때문에, 많은 문제를 푸는 것이 중요하다. 중급, 고급 난이도의 문제는 정리를 하도록 하고, 초급 난이도의 문제는 시간을 짧게 설정해두고 푸는 연습도 동시에 해보려고 한다. 문제 DIFFICULTY : Medium, SKILL : Intermediate, MySQL You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks. Grades contains the following data: Ketty gives Eve a task to generate a.. 2024. 3. 22.
[SQL 코테 풀이] HackerRank - New Companies (DIFFICULTY : Medium, SKILL : Intermediate, MySQL) 내용 문제 DIFFICULTY : Medium, SKILL : Intermediate, MySQL Amber's conglomerate corporation just acquired some new companies. Each of the companies follows this hierarchy: Given the table schemas below, write a query to print the company_code, founder name, total number of lead managers, total number of senior managers, total number of managers, and total number of employees. Order your output by as.. 2024. 3. 22.
[SQL 코테 풀이] HackerRank - Binary Tree Nodes (DIFFICULTY : Medium, SKILL : Intermediate, MySQL) DIFFICULTY는 Medium으로 고정해두고, SKILL을 높여서 Intermediate 단계를 풀어보려고 한다. 실제로 문제에서는 Advanced 단계의 문제까지 나올 것으로 예상되서 부지런하게 감을 익혀야겠다. 그리고 인사담당자에게 물어봤을 때, 함수 사용 방법 등 간단한 구글링은 가능하다고 했다. 그치만 시간을 아낄 수 있다면 가장 좋으니!! 사용하면서 함수에 대한 정보를 미리 정리해서 프린트 해둘까 싶다. 문제 DIFFICULTY : Medium, SKILL : Intermediate, MySQL You are given a table, BST, containing two columns: N and P, where N represents the value of a node in Binary T.. 2024. 3. 22.
[SQL 코테 풀이] HackerRank - The PADS (DIFFICULTY : Medium, SKILL : Basic, MySQL) 다음주 월요일에 코딩테스트 일정이 잡혔다. 근 3년간 SQL을 업무에 많이 활용했지만, 코딩테스트를 접해본 경험은 없어서 걱정이 된다. 하지만!! 열심히 준비하면 좋은 결과 얻을 수 있겠지? 원래는 HackerRank에서 단순히 문제만 풀고 넘어가려고 했다. 하지만 어떤 의도를 가지고 문제 풀이를 진행했는지 정리해보는 연습도 필요할 듯 해서, 문제 풀이를 함께 정리해보려고 한다. 금, 토, 일 3일동안 빡세게 코테준비해서 좋은 결과 만들어내보자!! 화이팅!!! 문제 DIFFICULTY : Medium, SKILL : Basic, MySQL Generate the following two result sets: 1. Query an alphabetically ordered list of all names .. 2024. 3. 22.