下载此文档

Hibernate 一对一外键双向关联.doc


文档分类:论文 | 页数:约5页 举报非法文档有奖
1/5
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/5 下载此文档
文档列表 文档介绍
Hibernate 一对一外键双向关联
 
一对一外键关联是一对多外键关联的特例,只是在多的一方加了个唯一性约束。
 
一、模型
一个人对应一个地址。
 
/*==============================================================*/
/* DBMS name:      MySQL                                     */
/* Created on:     2008-12-9 0:12:54                            */
/*==============================================================*/
drop table if exists address;
drop table if exists person;
/*==============================================================*/
/* Table: address                                               */
/*==============================================================*/
create table address
(
   id                   bigint not null ment 'ID',
   detail               varchar(120) not ment '详细地址',
   personid             ment '人的ID',
   primary key (id)
)
type = InnoDB;
alter table ment '地址';
/*==============================================================*/
/* Table: person                                                */
/*==============================================================*/
create table person
(
   id                   bigint not null ment 'ID',
   name                 varchar(24) not ment '
姓名',
   primary key (id)
)
type = InnoDB;
alter table ment '人';
alter table address add constraint FK_Reference_4 foreign key (personid)
      references person (id) on delete restrict on update restrict;
 
 

Hibernate 一对一外键双向关联 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数5
  • 收藏数0 收藏
  • 顶次数0
  • 上传人langyisang
  • 文件大小42 KB
  • 时间2018-07-26