Finn.ian
article thumbnail
[SQL][HackerRank] Weather Observation Station 4
Algorithm & SQL/HackerRank 2023. 1. 8. 01:52

😅 문제 출처 https://www.hackerrank.com/challenges/weather-observation-station-4/problem?isFullScreen=true Weather Observation Station 4 | HackerRank Find the number of duplicate CITY names in STATION. www.hackerrank.com 1️⃣ 문제 표의 총 CITY 항목 수와 표의 고유한 CITY 항목 수 간의 차이를 찾습니다. 2️⃣ MySQL 쿼리 SELECT COUNT(city) - COUNT(DISTINCT city) FROM station; Run Code 버튼 클릭 시, Submit Code 버튼 클릭 시,

article thumbnail
[SQL][HackerRank] Weather Observation Station 3
Algorithm & SQL/HackerRank 2022. 12. 3. 18:21

😅 문제 출처 https://www.hackerrank.com/challenges/weather-observation-station-3/problem?isFullScreen=true Weather Observation Station 3 | HackerRank Query a list of unique CITY names with even ID numbers. www.hackerrank.com 1️⃣ 문제 Station에서 짝수 ID 번호를 가진 city의 city 이름 목록을 쿼리합니다. 결과를 임의의 순서로 보여주지만 응답에서 중복 항목은 제외합니다. 2️⃣ MySQL 쿼리 select distinct city from station where ifnull(mod(id,2),0) = 0; 3️⃣ mod ..

article thumbnail
[SQL][HackerRank] Revising the Select Query II
Algorithm & SQL/HackerRank 2022. 12. 3. 17:02

😅 문제 출처 https://www.hackerrank.com/challenges/revising-the-select-query-2/problem Revising the Select Query II | HackerRank Query the city names for all American cities with populations larger than 120,000. www.hackerrank.com 1️⃣ 문제 인구가 120,000명보다 큰 CITY 테이블의 모든 미국 도시에 대한 NAME 필드를 쿼리합니다. 미국의 국가 코드는 미국이다. 2️⃣ MySQL 쿼리 select name from city where population > 120000 and countrycode = 'USA'; Run Co..

article thumbnail
[M1 Mac OS] 무료 DB 툴인 DBeaver 설치법
Tool 2022. 11. 30. 00:23

Community 버전으로도 충분히 사용 가능한 DB툴인 DBeaver 설치 방법에 대해 알려드리겠습니다. 😊 설치 방법 1. 하단의 링크로 접속하세요 (링크를 클릭해주시면 DBeaver를 바로 다운받으실 수 있는 페이지가 열립니다.) https://dbeaver.io/download/ Download | DBeaver Community Download Tested and verified for MS Windows, Linux and Mac OS X. Install: Windows installer – run installer executable. It will automatically upgrade version (if needed). MacOS DMG – just run it and drag-n-dr..

검색 태그