
Version:
Date: 2010/11/16 Summary:
Physical Data Model ABC会议管理系统Report ABC会议管理系统
Table of Contents
The 'Table of Contents' field needs to be updated!
I 图PhysicalDiagram_1
I.1 表格
<会议组织人员>
I.1.1 表格<会议组织人员>的卡片
I.1.2 表格<会议组织人员>的列清单
I.1.3 表格<会议组织人员>的代码预览
drop table if exists organizer;
/*==============================================================*/ /* Table: organizer */
/*==============================================================*/ create table organizer
(
org_id nvarchar(16) not null,
ogr_psw nvarchar(16),
primary key (org_id)
)
type = InnoDB;
I.2 表格<会议表>
I.2.1 表格<会议表>的卡片
I.2.2 表格<会议表>的列清单
I.2.3 表格<会议表>的代码预览
drop table if exists conference;
/*==============================================================*/ /* Table: conference *//*==============================================================*/ create table conference
(
conf_id int not null auto_increment,
conf_name nvarchar(32),
conf_add nvarchar(32),
conf_time datetime,
conf_subject nvarchar(60),
conf_organization nvarchar(32),
primary key (conf_id)
)
type = InnoDB;
I.3 表格<参会人员总表>
I.3.1 表格<参会人员总表>的卡片
I.3.2 表格<参会人员总表>的列清单
I.3.3 表格<参会人员总表>的代码预览
drop table if exists conventioner;
/*==============================================================*/ /* Table: conventioner */
/*==============================================================*/ create table conventioner
(
conv_id nvarchar(16) not null,
conv_password nvarchar(16) not null,
conv_name nvarchar(16) not null,
conv_email nvarchar(32),
conv_dept nvarchar(32),
primary key (conv_id)
