song.log

[MySQL] Schema(스키마), Table(테이블) 생성 본문

DevLog/MySQL

[MySQL] Schema(스키마), Table(테이블) 생성

SingaKorean 2019. 12. 30. 21:40
반응형

1. DATABASE/SCHEMA 생성 & 삭제

CREATE DATABASE example;
DROP DATABASE example;

 

 

2. DATABASE 목록 조회

SHOW DATABASES;

3. DATABASE 사용/업데이트

USE example;

 

 

4. TABLE 생성

세미콜론이 없는 상태에서 엔터를 누르면 개행할 수 있고, 콤마를 잊었을 경우 엔터 후 콤마를 추가해주면 된다. 

 

 

 

 

 

MySQL에서 쓰이는 Data Type 참조 사이트 :

http://www.mysqltutorial.org/mysql-data-types.aspx

 

 

 

참조한 생활코딩 URL :

https://opentutorials.org/module/3300/19535

https://opentutorials.org/module/3300/19536

https://opentutorials.org/module/3300/19537

 

반응형
Comments