데이터 베이스 생성 CREATE DATABASE mydb 테이블 생성 CREATE TABLE student_scores ( student_id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(50) NOT NULL, math_score INT, english_score INT, science_score INT, created datetime NOT NULL ); 데이터 추가 INSERT INTO table (name, math_score, english_score, science_score, created) VALUES('hoon', 90, 80, 90, NOW()) 데이터 수정 UPDATE table SET name='hoon1' WHERE id=1; 데이터 조회 SEL..