[SQL문제풀기] Basic Select 2~7

silver's avatar
Apr 01, 2025
[SQL문제풀기] Basic Select 2~7

문제1 - Revising the Select Query II

MySQL, Oracle, DB2, MS SQL Server

내가 작성한 정답

select name from city where countrycode = 'USA' and population > 120000;

문제2 - Select All

MySQL, Oracle, DB2, MS SQL Server

내가 작성한 정답

select * from city;

문제3 - Select All

MySQL, Oracle, DB2, MS SQL Server

내가 작성한 정답

select * from city where id = 1661;

문제4 - Japanese Cities' Attributes

MySQL, Oracle, DB2, MS SQL Server

내가 작성한 정답

select * from city where countrycode = 'JPN';

문제5 - Japanese Cities' Names

MySQL, Oracle, DB2, MS SQL Server

내가 작성한 정답

select name from city where countrycode = 'JPN';

문제6 - Japanese Cities' Names

MySQL, Oracle, DB2, MS SQL Server

내가 작성한 정답

select name from city where countrycode = 'JPN';
 
 
Share article

silver