Contents
문제1 - Revising the Select Query IIMySQL, Oracle, DB2, MS SQL Server문제2 - Select AllMySQL, Oracle, DB2, MS SQL Server문제3 - Select AllMySQL, Oracle, DB2, MS SQL Server문제4 - Japanese Cities' AttributesMySQL, Oracle, DB2, MS SQL Server문제5 - Japanese Cities' NamesMySQL, Oracle, DB2, MS SQL Server문제6 - Japanese Cities' NamesMySQL, Oracle, DB2, MS SQL Server문제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