MySQL

(DB) ERD 다이어 그램 만들어 보기 - 16

mynote6676 2025. 5. 13. 19:30

 

https://app.diagrams.net/

 

Flowchart Maker & Online Diagram Software

Flowchart Maker and Online Diagram Software draw.io is free online diagram software. You can use it as a flowchart maker, network diagram software, to create UML online, as an ER diagram tool, to design database schema, to build BPMN online, as a circuit d

app.diagrams.net

https://dbdiagram.io/d

 

dbdiagram.io - Database Relationship Diagrams Design Tool

 

dbdiagram.io

 

 

show create table employees;

show create table dept_emp;

CREATE TABLE `employees` (
   `emp_no` int NOT NULL,
   `birth_date` date NOT NULL,
   `first_name` varchar(14) NOT NULL,.
   `last_name` varchar(16) NOT NULL,
   `gender` enum('M','F') NOT NULL,
   `hire_date` date NOT NULL,
   PRIMARY KEY (`emp_no`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

 

 

'MySQL' 카테고리의 다른 글

(DB)MySQL JOIN - 17  (0) 2025.05.14
(DB) 블로그에 필요한 DB 간단 버전  (0) 2025.05.13
(DB)관계 차수란? -15  (0) 2025.05.13
(DB)MySQL 기초 복습 하기 - 14  (0) 2025.05.13
(DB)인덱스(index)가 뭐야? - 13  (0) 2025.05.13