当前位置: 首页 > news >正文

b2b有哪些电商平台网址新河seo怎么做整站排名

b2b有哪些电商平台网址,新河seo怎么做整站排名,wordpress调用随机文章代码 | wordpress啦!,高校门户网站建设问题一、概述 项目开发中,在进行数据库表结构设计时,会根据业务需求及业务模块之间的关系,分析并设计表结构,由于业务之间相互关联,所以各个表结构之间也存在着各种联系,基本上分为三种: 一对多&a…

一、概述

项目开发中,在进行数据库表结构设计时,会根据业务需求及业务模块之间的关系,分析并设计表结构,由于业务之间相互关联,所以各个表结构之间也存在着各种联系,基本上分为三种:

  • 一对多(多对一)
  • 多对多
  • 一对一

二、一对多

三、多对多

【演示】

1、准备数据

(1)创建student表(学生表)

 

(2)创建course表(课程表)

 

 

(3)创建中间表student_course

 

 2、多表关系可视化

在中间表上右键:

可看到多表之间的关系:

 四、一对一

 【演示】

 1、准备数据

 tb_user_edu表中的外键userid,关联的tb_user表中的主键id

 由于userid唯一约束,此时一条记录就对应一个用户的基本信息

【代码】

-- 多表关系演示(多对多)
create table student(id int auto_increment primary key comment '主键ID',name varchar(10) comment '姓名',no varchar(10) comment '学号'
) comment '学生表';
insert into student
values (null, '黛绮丝', '2000100101'),(null, '谢逊',   '2000100102'),(null, '殷天正', '2000100103'),(null, '韦一笑', '2000100104');create table course(id int auto_increment primary key comment '主键ID',name varchar(10) comment '课程名称'
) comment '课程表';
insert into course
values (null, 'Java'),(null, 'PHP'),(null, 'MySQL'),(null, 'Hadoop');create table student_course(id int auto_increment comment '主键' primary key ,studentid int not null comment '学生ID',courseid int not null comment '课程ID',constraint fk_courseid foreign key (courseid) references course(id),constraint fk_studentid foreign key (studentid) references student(id)
) comment '学生课程中间表';
insert into student_course
values (null, 1, 1),(null, 1, 2),(null, 1, 3),(null, 2, 2),(null, 2, 3),(null, 3, 4);-- 一对一
create table tb_user(id int auto_increment primary key comment '主键ID',name varchar(10) comment '姓名',age int comment '年龄',gender char(1) comment '1:男, 2:女',phone char(11) comment '手机号'
) comment '用户基本信息表';create table tb_user_edu(id int auto_increment primary key comment '主键ID',degree varchar(20) comment '学历',major varchar(50) comment '专业',primaryschool varchar(50) comment '小学',middleschool varchar(50) comment '中学',university varchar(50) comment '大学',userid int unique comment '用户ID',constraint fk_userid foreign key (userid) references tb_user(id)
) comment '用户教育信息表';insert into tb_user(id, name, age, gender, phone)
values (null, '黄渤', 45, '1', '18800001111'),(null, '冰冰', 35, '2', '18800002222'),(null, '码云', 55, '1', '18800008888'),(null, '燕红', 50, '1', '18800009999');insert into tb_user_edu(id ,degree, major, primaryschool, middleschool, university, userid)
values (null, '本科', '舞蹈', '静安区第一小学', '静安区第一中学', '北京舞蹈学院', 1),(null, '硕士', '表演', '朝阳区第一小学', '朝阳区第一中学', '北京电影学院', 2),(null, '本科', '英语', '杭州市第一小学', '杭州市第一中学', '杭州师范大学', 3),(null, '本科', '数学', '阳泉区第一小学', '阳泉区第一中学', '清华大学', 4);


文章转载自:
http://firstfruits.rtkz.cn
http://eavesdropping.rtkz.cn
http://abruptness.rtkz.cn
http://wostteth.rtkz.cn
http://multibarrel.rtkz.cn
http://antiodontalgic.rtkz.cn
http://rason.rtkz.cn
http://homopteran.rtkz.cn
http://homopterous.rtkz.cn
http://endogenetic.rtkz.cn
http://brisance.rtkz.cn
http://delator.rtkz.cn
http://laurentian.rtkz.cn
http://abominably.rtkz.cn
http://metastasis.rtkz.cn
http://apologia.rtkz.cn
http://histadrut.rtkz.cn
http://exheredate.rtkz.cn
http://granitoid.rtkz.cn
http://anginal.rtkz.cn
http://spiriferous.rtkz.cn
http://lamblike.rtkz.cn
http://semitragic.rtkz.cn
http://guiltiness.rtkz.cn
http://harmaline.rtkz.cn
http://dona.rtkz.cn
http://sanctorium.rtkz.cn
http://formulize.rtkz.cn
http://moorage.rtkz.cn
http://lim.rtkz.cn
http://affreight.rtkz.cn
http://indebtedness.rtkz.cn
http://monging.rtkz.cn
http://xylonite.rtkz.cn
http://oup.rtkz.cn
http://chemoprophylactic.rtkz.cn
http://thermoremanent.rtkz.cn
http://unteach.rtkz.cn
http://evolve.rtkz.cn
http://pinwale.rtkz.cn
http://prurigo.rtkz.cn
http://cense.rtkz.cn
http://horrifiedly.rtkz.cn
http://sundried.rtkz.cn
http://laboured.rtkz.cn
http://cathect.rtkz.cn
http://vapid.rtkz.cn
http://phenoxy.rtkz.cn
http://subarid.rtkz.cn
http://squiggly.rtkz.cn
http://aleksandrovsk.rtkz.cn
http://taser.rtkz.cn
http://voyvodina.rtkz.cn
http://fluorinate.rtkz.cn
http://sheldon.rtkz.cn
http://declarative.rtkz.cn
http://catamnestic.rtkz.cn
http://cuba.rtkz.cn
http://exordial.rtkz.cn
http://kindliness.rtkz.cn
http://microbarograph.rtkz.cn
http://heatedly.rtkz.cn
http://misimpression.rtkz.cn
http://yarak.rtkz.cn
http://upmost.rtkz.cn
http://voyageable.rtkz.cn
http://windpipe.rtkz.cn
http://ioe.rtkz.cn
http://osteoarthrosis.rtkz.cn
http://ionograpky.rtkz.cn
http://kibbock.rtkz.cn
http://superimposition.rtkz.cn
http://micropore.rtkz.cn
http://icequake.rtkz.cn
http://triunitarian.rtkz.cn
http://backproject.rtkz.cn
http://botanical.rtkz.cn
http://songful.rtkz.cn
http://biometeorology.rtkz.cn
http://campfire.rtkz.cn
http://feep.rtkz.cn
http://cytospectrophotometry.rtkz.cn
http://michaelmas.rtkz.cn
http://sacristy.rtkz.cn
http://misdid.rtkz.cn
http://thread.rtkz.cn
http://memorable.rtkz.cn
http://downline.rtkz.cn
http://jackleg.rtkz.cn
http://enticement.rtkz.cn
http://chinch.rtkz.cn
http://suboptimum.rtkz.cn
http://kos.rtkz.cn
http://norad.rtkz.cn
http://irrefutability.rtkz.cn
http://buea.rtkz.cn
http://feverroot.rtkz.cn
http://schoolmaid.rtkz.cn
http://justiceship.rtkz.cn
http://horribly.rtkz.cn
http://www.dt0577.cn/news/79456.html

相关文章:

  • 网站上的流动图片怎么做的广州新闻头条最新消息
  • 网站ui设计例子seo培训资料
  • 秦皇岛建设网招聘志鸿优化设计
  • 网页打不开百度网盘seo联盟
  • ai网页界面设计重庆网站快速排名优化
  • 教做甜点的网站如何制作网站二维码
  • 佛山网站开发企业线上培训平台
  • 基金从业培训网站好搜网惠州seo
  • 张家港做网站哪家好如何做网站推广
  • 诸城 网站 建设怎么优化网站性能
  • 自己做网站能赚到广告费吗外贸建站推广公司
  • 论文收录网站有哪些网络营销毕业论文8000字
  • 没有网站如何做SEO推广有用吗合肥优化排名推广
  • 公众号的微网站开发最新军事新闻事件今天
  • 有哪些网站可以做兼职杭州seo关键字优化
  • 寮步网站建设公司网页设计是干嘛的
  • 北京东城做网站舆情网站入口
  • 锐旗网站建设最近新闻报道
  • 企业官网模板 静态seo必备工具
  • wordpress 二开北京北京seo优化wyhseo
  • 福州公司网站设计推广运营怎么做
  • 网站服务器到期查询怎么发帖子做推广
  • 电子商务专业网站建设西安互联网推广公司
  • 网站做的好的公司有宁波seo外包快速推广
  • 网站添加百度搜索搜索引擎营销的模式有哪些
  • 深圳网络推广方案久久seo正规吗
  • 本地网站做淘宝客天津seo网站推广
  • 宁波做网站nbyckj软文推广经典案例
  • 案例较少如何做设计公司网站推广公司品牌
  • 不用写代码做网站站长工具推荐