当前位置:网站首页>MySQL表操作练习
MySQL表操作练习
2022-08-05 05:40:00 【小孙的代码分享】
设计一个考勤系统
考勤系统,包含员工表,考勤记录表
主要考虑记录表中的记录信息,是如何关联到员工表,员工与记录关系为1:m。
create TABLE emp(id int primary key,name varchar(20));
create TABLE info(id int primary key,emp_id int,info_date timestamp,foreign key (emp_id) references emp(id));
设计一个学校宿舍管理系统
学校宿舍管理系统,要求包含宿舍信息,学生信息,每日的宿舍查房记录。
主要考虑学生与宿舍的关系:m:1,宿舍的查房记录是根据宿舍来查的,与宿舍有关系,一个宿舍可以多次查房,宿舍与查房记录是1:m的关系
create table dormitory(id int primary key,number varchar(20));
create table student(id int primary,name varchar(20),dormitory_id int,FOREIGN KEY(dormitory_id) REFERENCES dormitory(id));
create table info (id int primary key,dormitory_id int,status bit,info_date TIMESTAMP,FOREIGN KEY(dormitory_id) REFERENCES dormitory(id));
设计一个车辆违章系统
车辆违章系统,包含用户表,车辆表,违章信息表。违章信息表中包含用户和车辆的违章信息
用户可以拥有多辆车,关系为1:m,题目已经说明违章信息包括用户和车辆,说明违章信息表中要记录用户和车辆,一个用户可以有多次违章记录,用户与违章记录关系为1:m,一辆车也可以有多次违章记录,车辆与违章记录关系也为1:m
create table user(id int primary key,name varchar(20));
create table cars(id int primary key,name varchar(20),user_id int,foreign key (user_id) references user(id));
create table info(id int primary key,user_id int,cars_id int,foreign key (user_id) references user(id),foreign key (cars_id) references cars(id));
设计一个学校食堂管理系统
学校食堂管理系统,包含食堂表,食堂仓口表,仓口收费记录表
一个食堂有多个仓口卖饭,关系为1:m,每个仓口卖饭可以有很多次,仓口与收费记录也是1:m
create table hall(id int primary key, name varchar(20));
create table hall_opening(id int primary key,name varchar(20),hall_id int,foreign key (hall_id) references hall(id));
create table info(id int primary key,price int,info_date timestamp,hall_opening_id int,foreign key (hall_opening_id) references hall_opening(id));
边栏推荐
- Tips for formatting code indentation
- Transformer详细解读与预测实例记录
- 【FAQ】CCAPI Compatible EOS Camera List (Updated in August 2022)
- 微信小程序仿input组件、虚拟键盘
- Drools规则引擎快速入门(一)
- Seven Ways to Center a Box Horizontally and Vertically
- Configuration of routers and static routes
- el-autocomplete use
- System basics - study notes (some command records)
- 【内推】新相微电子
猜你喜欢
亚马逊美国站:马术头盔CPC认证标准要求
农场游戏果园系统+牧场养殖系统+广告联盟模式流量主游戏小程序APP V1
NACOS Configuration Center Settings Profile
Chengyun Technology was invited to attend the 2022 Alibaba Cloud Partner Conference and won the "Gathering Strength and Going Far" Award
Passing parameters in multiple threads
Teach you simple steps to achieve industrial raspberries pie properly installed RS232 USB drive
numpy.random使用文档
人人AI(吴恩达系列)
花花省V5淘宝客APP源码无加密社交电商自营商城系统带抖音接口
Vim tutorial: vimtutor
随机推荐
h5页面回退到微信小程序并携带参数
【考研结束第一天,过于空虚,想对自己进行总结一下】
js 使用雪花id生成随机id
Browser Storage for H5
JS控制只能输入数字并且最多允许小数点两位
el-autocomplete use
Linux中安装Redis教程
Vim tutorial: vimtutor
【MyCat简单介绍】
关于Antd的Affix突然不好用了,或者Window的scroll监听不好用了
NACOS配置中心设置配置文件
淘宝客APP带自营商城本地生活CPS外卖优惠电影票话费更新渠道跟单生活特权V3
Quick Start to Drools Rule Engine (1)
scikit-image图像处理笔记
Alibaba Cloud Video on Demand
cs231n learning record
input detailed file upload
格式化代码缩进的小技巧
numpy.random使用文档
ES2020新特性