반응형 aws db연동1 aws db연동을 해보자! use acet_database; show variables like 'c%'; -- 캐릭터 셋 변경 alter database acet_database character set = 'utf8mb4' collate = 'utf8mb4_general_ci'; -- 타임존 확인 select @@time_zone, now(); -- 한글 체크를 위해 테이블 생성 create table test( id bigint(20) not null auto_increment, content varchar(255) default null, primary key (id) ) engine=InnoDB; -- 한글을 하나 넣어본다. insert into test(content) values ('테스트'); -- 한글이 잘 들어가.. 2022. 2. 4. 이전 1 다음 반응형