CREATE TABLE awsserverchkmysqldb.staff (firstname text, lastname text, phone text); INSERT INTO awsserverchkmysqldb.staff VALUES ("tae", "seo", "010-2222-2222"); INSERT INTO awsserverchkmysqldb.staff VALUES ("S", "kim", "010-6666-2222"); // 초기 데이터베이스 이름 awsserverchkmysqldb으로 생성했음. 4. 조회 SELECT * FROM awsserverchkmysqldb.staff WHERE firstname = "tae";