当前位置:网站首页>MySQL创建oracle练习表
MySQL创建oracle练习表
2022-04-23 05:35:00 【GroupiesM】
/* Navicat MySQL Data Transfer Source Server : local-cheergo Source Server Version : 80028 Source Host : localhost:3306 Source Database : scott Target Server Type : MYSQL Target Server Version : 80028 File Encoding : 65001 Date: 2022-04-21 22:24:31 */
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for bonus
-- ----------------------------
DROP TABLE IF EXISTS `bonus`;
CREATE TABLE `bonus` (
`ename` varchar(10) DEFAULT NULL,
`job` varchar(9) DEFAULT NULL,
`sal` int DEFAULT NULL,
`comm` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- ----------------------------
-- Records of bonus
-- ----------------------------
-- ----------------------------
-- Table structure for dept
-- ----------------------------
DROP TABLE IF EXISTS `dept`;
CREATE TABLE `dept` (
`deptno` int NOT NULL,
`dname` varchar(14) DEFAULT NULL,
`loc` varchar(13) DEFAULT NULL,
PRIMARY KEY (`deptno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- ----------------------------
-- Records of dept
-- ----------------------------
INSERT INTO `dept` VALUES ('10', 'ACCOUNTING', 'NEW YORK');
INSERT INTO `dept` VALUES ('20', 'RESEARCH', 'DALLAS');
INSERT INTO `dept` VALUES ('30', 'SALES', 'CHICAGO');
INSERT INTO `dept` VALUES ('40', 'OPERATIONS', 'BOSTON');
-- ----------------------------
-- Table structure for emp
-- ----------------------------
DROP TABLE IF EXISTS `emp`;
CREATE TABLE `emp` (
`empno` int NOT NULL,
`ename` varchar(10) DEFAULT NULL,
`job` varchar(9) DEFAULT NULL,
`mgr` int DEFAULT NULL,
`hiredate` date DEFAULT NULL,
`sal` decimal(7,2) DEFAULT NULL,
`comm` decimal(7,2) DEFAULT NULL,
`deptno` int DEFAULT NULL,
PRIMARY KEY (`empno`),
KEY `FK_DEPTNO` (`deptno`),
CONSTRAINT `FK_DEPTNO` FOREIGN KEY (`deptno`) REFERENCES `dept` (`deptno`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- ----------------------------
-- Records of emp
-- ----------------------------
INSERT INTO `emp` VALUES ('7369', 'SMITH', 'CLERK', '7902', '1980-12-17', '800.00', null, '20');
INSERT INTO `emp` VALUES ('7499', 'ALLEN', 'SALESMAN', '7698', '1981-02-20', '1600.00', '300.00', '30');
INSERT INTO `emp` VALUES ('7521', 'WARD', 'SALESMAN', '7698', '1981-02-22', '1250.00', '500.00', '30');
INSERT INTO `emp` VALUES ('7566', 'JONES', 'MANAGER', '7839', '1981-04-02', '2975.00', null, '20');
INSERT INTO `emp` VALUES ('7654', 'MARTIN', 'SALESMAN', '7698', '1981-09-28', '1250.00', '1400.00', '30');
INSERT INTO `emp` VALUES ('7698', 'BLAKE', 'MANAGER', '7839', '1981-05-01', '2850.00', null, '30');
INSERT INTO `emp` VALUES ('7782', 'CLARK', 'MANAGER', '7839', '1981-06-09', '2450.00', null, '10');
INSERT INTO `emp` VALUES ('7788', 'SCOTT', 'ANALYST', '7566', '1987-06-13', '3000.00', null, '20');
INSERT INTO `emp` VALUES ('7839', 'KING', 'PRESIDENT', null, '1981-11-17', '5000.00', null, '10');
INSERT INTO `emp` VALUES ('7844', 'TURNER', 'SALESMAN', '7698', '1981-09-08', '1500.00', '0.00', '30');
INSERT INTO `emp` VALUES ('7876', 'ADAMS', 'CLERK', '7788', '1987-06-13', '1100.00', null, '20');
INSERT INTO `emp` VALUES ('7900', 'JAMES', 'CLERK', '7698', '1981-12-03', '950.00', null, '30');
INSERT INTO `emp` VALUES ('7902', 'FORD', 'ANALYST', '7566', '1981-12-03', '3000.00', null, '20');
INSERT INTO `emp` VALUES ('7934', 'MILLER', 'CLERK', '7782', '1982-01-23', '1300.00', null, '10');
-- ----------------------------
-- Table structure for salgrade
-- ----------------------------
DROP TABLE IF EXISTS `salgrade`;
CREATE TABLE `salgrade` (
`grade` int DEFAULT NULL,
`losal` int DEFAULT NULL,
`hisal` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- ----------------------------
-- Records of salgrade
-- ----------------------------
INSERT INTO `salgrade` VALUES ('1', '700', '1200');
INSERT INTO `salgrade` VALUES ('2', '1201', '1400');
INSERT INTO `salgrade` VALUES ('3', '1401', '2000');
INSERT INTO `salgrade` VALUES ('4', '2001', '3000');
INSERT INTO `salgrade` VALUES ('5', '3001', '9999');
版权声明
本文为[GroupiesM]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_43529621/article/details/124333523
边栏推荐
- Radar equipment (greedy)
- Qwebsocket communication
- Knowledge of egg testing -- mock, Supertest, coffee
- Various situations of data / component binding
- Excel 2016 cannot open the file for the first time. Sometimes it is blank and sometimes it is very slow. You have to open it for the second time
- Why can't V-IF and V-for be used together
- Nécessité de précharger les cookies dans le sélénium
- catkin_package到底干了什么
- 橙单微服务之批量导入
- Call the interface to get the time
猜你喜欢

Excel 2016 打开文件第一次打不开,有时空白,有时很慢要打开第二次才行

CPT 104_ TTL 09

Camera imaging + homography transformation + camera calibration + stereo correction

Traversal array, object parent-child communication props / $emit

Generation of straightening body in 3D slicer

Cross platform packaging of QT packaging program

Uniapp wechat sharing

CPT 104_TTL 09

Pytorch deep learning practice_ 11 convolutional neural network

Pol / select / EPO
随机推荐
Isosceles triangle - the 9th Lanqiao provincial competition - group C
Cross domain CORS relationship~
STD:: String implements split
使用宝塔+xdebug+vscode远程调试代码
STL learning notes 0x0001 (container classification)
双击.jar包无法运行解决方法
分支与循环语句
es6数组的使用
Quick app bottom navigation bar
After NPM was upgraded, there was a lot of panic
Frequently asked interview questions - 3 (operating system)
Multiple mainstream SQL queries only take the latest one of the data
CPT 104_TTL 09
Data bus realizes the communication between brother components
数据安全入门产品——数据库审计系统详解
Branch and loop statements
提升Facebook触及率和互动率攻略 | 智能客服帮您抓住用户的心
Range of numbers (dichotomous classic template topic)
The address value indicated by the pointer and the value of the object indicated by the pointer (learning notes)
Hongji cyclone RPA provides technical support for Guojin securities and realizes process automation in more than 200 business scenarios