This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drop table salgrade; | |
drop table dept; | |
drop table emp; | |
drop table bonus; | |
CREATE TABLE SALGRADE ( | |
GRADE int, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
vacation-db: | |
image: mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: "root1234" | |
MYSQL_DATABASE: "database이름" | |
MYSQL_USER: "아이디" |