Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RealMySQL vol1 예제 덤프 파일 설치 방법 #1

Open
jay-so opened this issue May 5, 2024 · 0 comments
Open

RealMySQL vol1 예제 덤프 파일 설치 방법 #1

jay-so opened this issue May 5, 2024 · 0 comments
Assignees
Labels
함께 읽어보면 좋은 자료 공부를 하면서 함께 읽어보면 좋은 자료들을 의미합니다.

Comments

@jay-so
Copy link
Member

jay-so commented May 5, 2024

📖 함께 읽어보면 좋은 자료 - vol1 예제 덤프 파일 설치


1️⃣ RealMySQL vol1 예제 덤프 파일 다운로드

  • 아래의 github에서 git clone을하여 예제 덤프 파일을 다운로드하면 됩니다!

RealMySQL 8.0 덤프파일 GitHub


2️⃣ employees.zip 파일 압축 해제 후, 터미널 이동

  • 해당 employees.zip파일을 해제합니다.

-> employees.sql 파일 생성

스크린샷 2024-05-05 오후 9 50 10

  • 해당 압축 파일을 푼 폴더 로 이동하여 터미널로 mysql 서버를 시작해 해당 SQL문을 삽입합니다.
  1. 해당 압축 파일로 이동한 후, mysql 서버 실행
mysql.server start
mysql -u root -p
  1. employees 데이터베이스 생성 및 덤프 파일 insert
CREATE DATABASE employees
DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;

USE employees;

SOURCE employees.sql;

3️⃣ 테이블 생성 완료 확인

스크린샷 2024-05-05 오후 10 00 56

@jay-so jay-so added the 함께 읽어보면 좋은 자료 공부를 하면서 함께 읽어보면 좋은 자료들을 의미합니다. label May 5, 2024
@jay-so jay-so self-assigned this May 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
함께 읽어보면 좋은 자료 공부를 하면서 함께 읽어보면 좋은 자료들을 의미합니다.
Projects
None yet
Development

No branches or pull requests

1 participant