일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Labor Management System
- tensorflow
- oracle
- 피그마인디언
- 데이터분석
- 신경쓰기의 기술
- pandas profiling
- Inventory Optimization
- 당신의 인생이 왜 힘들지 않아야 한다고 생각하십니까
- SKU Consolidation
- HackerRank
- 파이썬
- MS SQL Server
- kaggle
- 딥러닝
- ModelCheckPoint
- TensorFlowGPU
- ProfileReport
- 웨어하우스 보관 최적화
- leetcode
- Product Demand
- MySQL
- forecast
- 코딩테스트연습
- SQL
- eda
- 코딩테스트
- 프로그래머스
- Gaimification
- ABC Analysis
- Today
- Total
목록SQL (81)
오늘도 배운다

문제 source: HackerRank You are given a table, Projects, containing three columns: Task_ID, Start_Date and End_Date. It is guaranteed that the difference between the End_Date and the Start_Date is equal to 1 day for each row in the table. If the End_Date of the tasks are consecutive, then they are part of the same project. Samantha is interested in finding the total number of different projects co..

문제 source: HackerRank Harry Potter and his friends are at Ollivander's with Ron, finally replacing Charlie's old broken wand.Hermione decides the best way to choose is by determining the minimum number of gold galleons needed to buy each non-evil wand of high power and age. Write a query to print the id, age, coins_needed, and power of the wands that Ron's interested in, sorted in order of desce..
문제 source: HackerRank Julia asked her students to create some coding challenges. Write a query to print the hacker_id, name, and the total number of challenges created by each student. Sort your results by the total number of challenges in descending order. If more than one student created the same number of challenges, then sort the result by hacker_id. If more than one student created the same..

문제 source: HackerRank You are given three tables: Students, Friends and Packages. Students contains two columns: ID and Name. Friends contains two columns: ID and Friend_ID (ID of the ONLY best friend). Packages contains two columns: ID and Salary (offered salary in $ thousands per month). Write a query to output the names of those students whose best friends got offered a higher salary than the..

문제 source: HackerRank You did such a great job helping Julia with her last coding contest challenge that she wants you to work on this one, too! The total score of a hacker is the sum of their maximum scores for all of the challenges. Write a query to print the hacker_id, name, and total score of the hackers ordered by the descending score. If more than one hacker achieved the same total score, ..

문제 Julia just finished conducting a coding contest, and she needs your help assembling the leaderboard! Write a query to print the respective hacker_id and name of hackers who achieved full scores for more than one challenge. Order your output in descending order by the total number of challenges in which the hacker earned a full score. If more than one hacker received full scores in same number..

문제 Amber's conglomerate corporation just acquired some new companies. Each of the companies follows this hierarchy (See Fig1): 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 ascending company_code. Note: The tables ma..

문제 You are given two tables: Students and Grades. Students contains three columns ID, Name and Marks. Grades contains the following data: Grades contains the following data: Ketty gives Eve a task to generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8. The report must be in descending order by grade --..