Overview: Oracle scott user has four tables, which are more convenient for experiments and data verification. Now it is modified to MySQL version 1. Department table--dept 2. Employee table--emp 3. Salary Grade Table--salgrade 4. Bonus table--bonus dept --Create table create table DEPT ( deptno INT(2) not null, dname VARCHAR(14), loc VARCHAR(13) ) engine=InnoDB charset=utf8; -- Create/Recreate primary, unique and foreign key constraints alter table DEPT add constraint PK_DEPT primary key (DEPTNO) ; insert into DEPT(DEPTNO, DNAME, LOC) values ('10', 'ACCOUNTING', 'NEW YORK'); insert into DEPT(DEPTNO, DNAME, LOC) values ('20', 'RESEARCH', 'DALLAS'); insert into DEPT(DEPTNO, DNAME, LOC) values ('30', 'SALES', 'CHICAGO'); insert into DEPT(DEPTNO, DNAME, LOC) values ('40', 'OPERATIONS', 'BOSTON'); emp --Create table create table EMP ( empno INT(4) not null, ename VARCHAR(10), job VARCHAR(9), mgr INT(4), hiredate DATE, sal decimal(7,2), comm decimal(7,2), deptno INT(2) ) engine=InnoDB charset=utf8; -- Create/Recreate primary, unique and foreign key constraints alter table EMP add constraint PK_EMP primary key (EMPNO); alter table EMP add constraint FK_DEPTNO foreign key (DEPTNO) references DEPT (DEPTNO); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7369', 'SMITH', 'CLERK', '7902','1980-12-17', '800', null, '20'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7499', 'ALLEN', 'SALESMAN', '7698', '1981-02-20', '1600', '300', '30'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7521', 'WARD', 'SALESMAN', '7698', '1981-02-22', '1250', '500', '30'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7566', 'JONES', 'MANAGER', '7839', '1981-04-02', '2975', null, '20'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7654', 'MARTIN', 'SALESMAN', '7698', '1981-09-28', '1250', '1400', '30'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7698', 'BLAKE', 'MANAGER', '7839', '1981-05-01', '2850', null, '30'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7782', 'CLARK', 'MANAGER', '7839', '1981-06-09', '2450', null, '10'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7788', 'SCOTT', 'ANALYST', '7566', '1987-06-13', '3000', null, '20'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7839', 'KING', 'PRESIDENT', null, '1981-11-17', '5000', null, '10'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7844', 'TURNER', 'SALESMAN', '7698', '1981-09-08', '1500', '0', '30'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7876', 'ADAMS', 'CLERK', '7788', '1987-06-13', '1100', null, '20'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7900', 'JAMES', 'CLERK', '7698', '1981-12-03', '950', null, '30'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7902', 'FORD', 'ANALYST', '7566', '1981-12-03', '3000', null, '20'); insert into EMP(EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values ('7934', 'MILLER', 'CLERK', '7782', '1982-01-23', '1300', null, '10'); salgrade create table SALGRADE ( grade INT, losal INT, hisal INT ) engine=InnoDB charset=utf8; insert into SALGRADE(GRADE, LOSAL, HISAL) values ('1', '700', '1200'); insert into SALGRADE(GRADE, LOSAL, HISAL) values ('2', '1201', '1400'); insert into SALGRADE(GRADE, LOSAL, HISAL) values ('3', '1401', '2000'); insert into SALGRADE(GRADE, LOSAL, HISAL) values ('4', '2001', '3000'); insert into SALGRADE(GRADE, LOSAL, HISAL) values ('5', '3001', '9999'); bonus create table BONUS ( ename VARCHAR(10), job VARCHAR(9), sal INT, comm INT ) engine=InnoDB charset=utf8 ; Summarize This is the end of this article about the table creation statement of the Scott user under the MySQL version of Oracle. For more relevant content about the table creation statement of the Scott user under the MySQL version of Oracle, please search the previous articles of 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Use pure CSS to create a pulsating loader effect source code
>>: Summary of JS tips for creating or filling arrays of arbitrary length
MySQL sequence AUTO_INCREMENT detailed explanatio...
Project scenario: When running the Vue project, t...
1. Install MySQL (1) Unzip the downloaded MySQL c...
This article shares the specific code of js to re...
To beautify the table, you can set different bord...
The specific code is as follows: <a href="...
Usually, we first define the Dockerfile file, and...
1. scale() method Zoom refers to "reducing&q...
In daily development tasks, we often use MYSQL...
When using Flex layout, you will find that when a...
Table of contents 1. Scope 1. Global scope 2. Loc...
1. Install MySQL database ① Download and unzip an...
<body style="scroll:no"> <tabl...
MySQL itself does not support recursive syntax, b...
1. Command Introduction time is used to count the...