文件名称:住宅小区物业管理系统
文件大小:1.11MB
文件格式:ZIP
更新时间:2017-06-21 18:27:03
数据库
1、数据库的创建 T-SQL语句: create database Community 2、数据表的创建(可同时在创建时定义相关的约束) T-SQL语句: create table household( --住户信息 fno char(2), hno char(4), area int not null, pmfee int not null, name varchar(8)not null, tel varchar(11) not null, work_unit varchar(40), fsize int not null, repair_fund int not null, primary key(fno,hno) ); create table property_management_fee( --物业缴费信息 fno char(2), hno char(4), year_date char(4), month_date char(2), rpmfee int check(rpmfee>0) not null, ispay char(2) check(ispay like '是' or ispay like '否')not null, pay_date datetime default getdate(), handler varchar(8), pay_no char(12), primary key(fno,hno,year_date,month_date), foreign key(fno,hno)references household(fno,hno) ); create table parking_space( --停车位信息 pno char(4)primary key, fno char(2), hno char(4), carno char(8), park_fee int check(park_fee>0) not null, foreign key(fno,hno)references household(fno,hno), );
【文件预览】:
20101677-王威
----community()
--------.project(385B)
--------bin()
--------.settings()
--------pic()
--------src()
--------.classpath(412B)
----数据库脚本.txt(11KB)
----20101677-王威.doc(878KB)