赞
踩
数据库原理与应用课程设计
要求:使用MySQL数据库完成下面的数据库设计(1-12),在navicat下进行操作(创建数据库在mysql控制台下操作),提交sql语句和SQL运行结果的截图。
-----------------------------------------------------------
|
运行命令符: create table employee( -> eid int primary key, -> ename varchar(20) not null, -> esex varchar(25) not null, -> ejob varchar(30) unique, -> ebirth varchar(30) not null, -> deid int, -> constraint fk_deid foreign key(deid) references department(deid) -> ); 运行截图:
运行命名: create table department( -> deid int primary key, -> dename varchar(20) not null -> ); desc department; 运行截图:
运行命令: mysql> create table salary( -> eid int primary key, -> basicwage int not null, -> jobwage int not null, -> deduct int not null); 运行截图:
|
在Navicat连接数据库运行 命令符: alter table department add profile varchar(20); d |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。