Example of creating table statements for user Scott in MySQL version of Oracle

Example of creating table statements for user Scott in MySQL version of Oracle

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:
  • Scott Data Mapping MySQL Code Implementation Sharing

<<:  Use pure CSS to create a pulsating loader effect source code

>>:  Summary of JS tips for creating or filling arrays of arbitrary length

Recommend

MySQL sequence AUTO_INCREMENT detailed explanation and example code

MySQL sequence AUTO_INCREMENT detailed explanatio...

Analysis of idea compiler vue indentation error problem scenario

Project scenario: When running the Vue project, t...

SVG button example code based on CSS animation

The specific code is as follows: <a href="...

Using Docker run options to override settings in the Dockerfile

Usually, we first define the Dockerfile file, and...

CSS3 uses scale() and rotate() to achieve zooming and rotation

1. scale() method Zoom refers to "reducing&q...

mysql group by grouping multiple fields

In daily development tasks, we often use MYSQL...

Flex layout allows subitems to maintain their own height

When using Flex layout, you will find that when a...

A brief discussion on JavaScript scope

Table of contents 1. Scope 1. Global scope 2. Loc...

HTML adaptive table method

<body style="scroll:no"> <tabl...

MySQL recursion problem

MySQL itself does not support recursive syntax, b...

Detailed explanation of the use of Linux time command

1. Command Introduction time is used to count the...