[SQL문제풀기] Revising the Select Query I

silver's avatar
Mar 31, 2025
[SQL문제풀기] Revising the Select Query I

문제

MySQL , MS SQL Server

내가 작성한 정답

select * from city where population > 100000 and countrycode = 'USA'

Oracle, DB2

내가 작성한 정답

: 문장 끝에 ;를 넣지 않으면 오답처리 된다.
select * from city where countrycode = 'USA' and population > 100000;
Share article

silver