1.


2.

 : mysql 설치 필요 시 하기의 링크를 클릭

 : mysql 설치


3.

 : mysql 실행 후 MySQL Connections 옆에 + 기호 클릭


4.

 : 다음과 같이 해당 DB 접속 정보를 기입 후 Test Connection 버튼 클릭


5.


6.


7.

 : Test Connection 확인 후 OK 버튼 클릭


8.

 : 다음과 같이 새롭게 생성된 MySQL Connections mysql_mydb를 클릭하여 접속


9.

 : 데이터베이스 생성

1
2
create database mydb;
 
cs


10.

 : 문자 집합 및 정렬 설정 변경

1
2
ALTER DATABASE mydb DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
 
cs


11.

 : 사용할 데이터베이스 선택

1
2
use mydb;
 
cs


12.

 : 테이블 생성

1
2
3
4
5
6
7
create table todos (
    id int auto_increment primary key,
    title varchar(100),
    isDone boolean,
    createdDate datetime default now()
);
 
cs


13.

 : 샘플 데이터 2건 삽입

1
2
3
insert into todos(title, isDone) values('Hit the gym'false);
insert into todos(title, isDone) values('Pay bills'true);
 
cs


14.

 : 테이블 조회

1
2
select * from todos;
 
cs


  : 조회 결과



+ Recent posts