[HackerRank, SQL] Japanese Cities' Attributes & Names

takeon·2023년 12월 28일
0

SQL

목록 보기
11/11
post-thumbnail

"Japanese Cities' Attributes & Names" from HackerRank


🎄문제: Japanese Cities' Attributes

https://www.hackerrank.com/challenges/japanese-cities-attributes/problem?isFullScreen=true

🎄풀이 (MySQL)

SELECT * FROM CITY WHERE COUNTRYCODE="JPN"

🔅문제: Japanese Cities' Names

https://www.hackerrank.com/challenges/japanese-cities-name/problem?isFullScreen=true

🔅풀이 (MySQL)

SELECT NAME FROM CITY WHERE COUNTRYCODE="JPN"

0개의 댓글