일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 선형 모형
- github
- window function
- L2정규화
- 깃헙협업
- 편향-분산 교환
- merge
- CSS
- L1정규화
- AWS
- 버전충돌
- coding
- hackerrank
- full request
- 코딩공부
- PYTHON
- 온라인협업
- leetcode
- programmers
- mysql
- Git
- conflict
- elastic net
- HTML
- 교차 엔트로피
- 클라우드컴퓨팅
- RLIKE
- branch
- early stopping
- sql
- Today
- Total
목록데이터분석/practice_query (83)
Im between cherry
The Blunder Problem The Blunder | HackerRank Query the amount of error in Sam's result, rounded up to the next integer. www.hackerrank.com Samantha was tasked with calculating the average monthly salaries for all employees in the EMPLOYEES table, but did not realize her keyboard's key was broken until after completing the calculation. She wants your help finding the difference between her miscal..
Population Density Difference Problem Population Density Difference | HackerRank Query the difference between the maximum and minimum city populations in CITY. www.hackerrank.com Query the difference between the maximum and minimum populations in CITY. SELECT MAX(population) - MIN(population) FROM city
Japan Population Problem Japan Population | HackerRank Query to the sum of the populations of all Japanese cities in CITY. www.hackerrank.com Query the sum of the populations for all Japanese cities in CITY. The COUNTRYCODE for Japan is JPN. SELECT SUM(population) FROM CITY WHERE countrycode = 'JPN'
Average Population Problem Query the average population for all cities in CITY, rounded down to the nearest integer. SELECT FLOOR(AVG(population)) FROM city
Revising Aggregations - Averages Problem Revising Aggregations - Averages | HackerRank Query the average population of all cities in the District of California. www.hackerrank.com Query the average population of all cities in CITY where District is California. SELECT AVG(population) FROM city WHERE district = 'California'
Revising Aggregations - The Sum Function Problem Revising Aggregations - The Sum Function | HackerRank Query the total population of all cities for in the District of California. www.hackerrank.com Query the total population of all cities in CITY where District is California. Solution SELECT SUM(population) FROM city WHERE district = 'California'
Revising Aggregations - The Count Function Problem Revising Aggregations - The Count Function | HackerRank Query the number of cities having populations larger than 100000. www.hackerrank.com Query a count of the number of cities in CITY having a Population larger than100,000. - solution SELECT COUNT(*) FROM city WHERE population > 100000
Employee Salaries Problem Employee Salaries | HackerRank Print 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 Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than $2000 per month who have been employees for less than 10 months. Sort..