Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 신경쓰기의 기술
- 딥러닝
- Product Demand
- HackerRank
- MySQL
- 당신의 인생이 왜 힘들지 않아야 한다고 생각하십니까
- TensorFlowGPU
- oracle
- 피그마인디언
- 웨어하우스 보관 최적화
- forecast
- 파이썬
- 데이터분석
- ABC Analysis
- SQL
- Gaimification
- Labor Management System
- 코딩테스트연습
- pandas profiling
- SKU Consolidation
- tensorflow
- eda
- ModelCheckPoint
- MS SQL Server
- 코딩테스트
- kaggle
- Inventory Optimization
- leetcode
- ProfileReport
- 프로그래머스
Archives
- Today
- Total
오늘도 배운다
Weather Observation Station 4 / HackerRank, SQL, MySQL 본문
코딩테스트연습(SQL)
Weather Observation Station 4 / HackerRank, SQL, MySQL
LearnerToRunner 2022. 11. 30. 10:02문제
Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table.The STATION table is described as follows:

제출답안(MySQL)
SELECT COUNT(city) - COUNT(DISTINCT(city)) FROM station
문제 바로가기(MySQL)
728x90
'코딩테스트연습(SQL)' 카테고리의 다른 글
| Weather Observation Station 6 / HackerRank, SQL, MySQL (0) | 2022.11.30 |
|---|---|
| Weather Observation Station 5 / Hacker Rank, SQL, MySQL (0) | 2022.11.30 |
| Weather Observation Station 3 / HackerRank, SQL, MySQL (0) | 2022.11.30 |
| 상품을 구매한 회원 비율 구하기 / 프로그래머스, SQL, MySQL 코딩테스트 연습 JOIN (0) | 2022.11.29 |
| 우유와 요거트가 담긴 장바구니 / 프로그래머스, SQL, MySQL 코딩테스트 연습Summer/Winter Coding(2019) (0) | 2022.11.29 |
Comments