yuil :: SecOps

[NCloud] Cloud DB 실습 02 - MySQL Workbench 본문

실습/Naver Cloud 실습

[NCloud] Cloud DB 실습 02 - MySQL Workbench

yuil.lee 2025. 12. 3. 15:57
MySQL Workbench download
https://dev.mysql.com/downloads/file/?id=547694
 

MySQL :: Begin Your Download

 

dev.mysql.com

접속
table확인

sql
select * from application.papago
[ctrl] + [enter]

 

샘플 데이터 다운로드
https://dev.mysql.com/doc/index-other.html
 

MySQL :: Other MySQL Documentation

Other MySQL Documentation This page provides additional documentation. There's even more available on these extra pages: MySQL Server Doxygen Documentation Title HTML Online MySQL Server (latest version) View Expert Guides Example Databases Title DB Downlo

dev.mysql.com

import

번개모양 눌러서 실행

use sakila;
select * from actor;

아직 데이터가 없다.

특정 테이블에 마우스 오버해서 해당 아이콘 클릭해도 select 결과가 출력된다.

data import

sakila-data.sql
import
complete

data 확인
SELECT * FROM sakila.actor;

data import 확인

 

반응형