SQL
[MySQL] 샘플 데이터베이스 설치하기
Link2Me
2022. 4. 28. 21:35
728x90
MySQL 샘플 데이터베이스 설치하는 방법이다.
https://www.mysqltutorial.org/mysql-sample-database.aspx
위 사이트에 접속하면 받을 수가 있는데 문제는 Import 하면 에러가 발생하더라.
전체적인 구조는 위와 같다.
Legacy Create 테이블 생성 방식(?)이라 그런지 몰라도 테이블 순서가 매우 중요하다.
sql 파일을 Editor로 열어보면, Foreign Key 가 설정되어 있고 employees 테이블을 참조하고 있다.
customer 테이블보다 먼저 employees 테이블이 먼저 Import 되어야 한다는 의미로 간주해야 한다.
CREATE TABLE `customers` (
`customerNumber` int(11) NOT NULL,
`customerName` varchar(50) NOT NULL,
`contactLastName` varchar(50) NOT NULL,
`contactFirstName` varchar(50) NOT NULL,
`phone` varchar(50) NOT NULL,
`addressLine1` varchar(50) NOT NULL,
`addressLine2` varchar(50) DEFAULT NULL,
`city` varchar(50) NOT NULL,
`state` varchar(50) DEFAULT NULL,
`postalCode` varchar(15) DEFAULT NULL,
`country` varchar(50) NOT NULL,
`salesRepEmployeeNumber` int(11) DEFAULT NULL,
`creditLimit` decimal(10,2) DEFAULT NULL,
PRIMARY KEY (`customerNumber`),
KEY `salesRepEmployeeNumber` (`salesRepEmployeeNumber`),
CONSTRAINT `customers_ibfk_1` FOREIGN KEY (`salesRepEmployeeNumber`) REFERENCES `employees` (`employeeNumber`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
이런 점을 고려하여 테이블 순서를 변경한 파일을 첨부한다.
위 파일을 Import 하면 정상적으로 테이블이 생성되고 데이터가 추가될 것이다.
DBWeaver TOOL 을 이용해서 접속해보자.
접속환경 : VirtualBox 기반 CentOS 7.9 MariaDB 10.5
DB IP address : 192.168.1.20 (사설 IP)
Access IP address : 192.168.1.25
-- 사용자 권한 부여
-- 비밀번호는 각자 수정하시라.
use mysql;
grant all privileges on cmodels.* to codefox@'192.168.1.25' identified by '비밀번호';
flush privileges;
|
728x90