通过下面语句创建employee数据库和dept(部门表)、emp(员工表)、salgrade(工资等级表)34题
声明:其中大概有错误的地方 希望大佬指出来set foreign_key_checks = 0;drop database if exists employee;create database employee;use employee;create table dept(`deptno` int(2) not null comment '部门编号',`dname` varchar(14) default null comment '部门名称',`loc` varchar(13
原创
2020-12-11 14:00:46 ·
6204 阅读 ·
0 评论