Algorithm & SQL/SQL22 Japanese Cities' Attributes CITY 테이블에서 countrycode가 jpn 인 값을 구하는 문제이다. 정답 : select * from city where countrycode = 'jpn' 2022. 6. 7. Select By ID CITY 테이블에서 ID 가 1661 인 값을 구하는 문제이다. 정답 : select * from city where Id = 1661 2022. 6. 7. Revising the Select Query II CITY 테이블에서 인구수는 120,000명 초과 / countrycode 는 usa 인 곳에서 name 만 출력하는 문제이다. 정답 : select name from city where CountryCode = 'usa' and population > 120000 2022. 6. 7. Revising the Select Query I 해커랭크 가장 SQL 가장 첫 문제이다. city 테이블에서 인구수가 100,000 초과이며, countrycode 가 usa 인 곳만 출력하는 문제이다 정답 : select * from city where countrycode = 'usa' and population > 100000; 풀이 : 모든 city 테이블을 가져오기 와야 하므로 * 를 사용했고, population 은 100,000 초과 , countrycode 는 usa로 작성한다. usa 를 작성할때 ' ' 를 빼먹지 않도록 한다. 2022. 6. 7. 이전 1 2 3 다음