데이터베이스/SQL
SQL | question-28~39.sql
DBeaver 로 작성됨. question-28~39.sql use world; show tables; desc city; select * from city where CountryCode='KOR'; select * from city where Population > 5000000; insert into city (id, name, CountryCode, District, Population) values(10000, 'sample', 'KOR', 'test', 2000000); insert into city values(20000, 'sampletest', 'KOR', 'test3', 1000000); select count(*) from city; select * from city where id=..
2021. 1. 6. 17:03