데이터 베이스 생성 Create schema create schema `nodejs` default character set utf8; use nodejs create schema [스케마 이름] : 새로운 데이터베이스 생성 (``를 붙여야함) use [스케마 이름] : 특정 데이터베이스 사용 (``를 붙이지 않음.) 테이블 생성 Create table create table [스키마 이름].[테이블 이름]( -> id INT NOT NULL AUTO_INCREMENT, -> name VARCHAR(20) NOT NULL, -> age INT UNSIGNED NOT NULL, -> married TINYINT NOT NULL, -> comment TEXT NULL, -> created_at DATETIM..