我是靠谱客的博主 生动冰淇淋,最近开发中收集的这篇文章主要介绍mysql emp_mysql建立emp表,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

create table DEPT

(

DEPTNO int(2) not null,

DNAME varchar(14),

LOC varchar(13)

)

;

alter table DEPT

add constraint PK_DEPT primary key (DEPTNO);

create table EMP

(

EMPNO int(4) not null,

ENAME varchar(10),

JOB varchar(9),

MGR int(4),

HIREDATE date,

SAL int(7 ),

COMM int(7 ),

DEPTNO int(2)

)

;

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 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

最后

以上就是生动冰淇淋为你收集整理的mysql emp_mysql建立emp表的全部内容,希望文章能够帮你解决mysql emp_mysql建立emp表所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部