zoukankan      html  css  js  c++  java
  • 水电缴费管理系统-数据库表格创建

    create table admin
    (
    aid varchar2(10) not null,
    apassword  varchar2(8) not null,
    aphone  varchar2(11) not null,
    aname varchar2(8) not null
    );
    comment on table admin is '管理员登录';
    comment on column admin.aid is '管理编号(主键)';
    comment on column admin.apassword is '登录密码';
    comment on column admin.aphone is '管理员电话';
    comment on column admin.aname is '管理员姓名';
    alter table admin add constraint pk_admin primary key (aid);

    drop table uuser;
    
    create table uuser
    (
    uon varchar2(15) not null,
    uname varchar2(8) not null,
    uphone  varchar2(11) not null,
    upassword varchar2(8) not null,
    uaddress  varchar2(60) not null
    
    );
    comment on table uuser is '用户登录';
    comment on column uuser.uon is '用户编号(主键)';
    comment on column uuser.uname is '用户姓名';
    comment on column uuser.uphone is '用户电话';
    comment on column uuser.upassword is '用户登录密码';
    comment on column uuser.uaddress is '用户地址';
    
    alter table uuser add constraint pk_uuser primary key (uon);

    drop table dianfei;
    create table dianfei
    (
    uon varchar2(10) not null,
    mmonth  varchar2(6) not null,
    ddf number(6,2) not null,
    djftime date not null,
    djfzt varchar2(3) not null,
    dsyjf date not null
    );
    comment on table dianfei is '电表';
    comment on column dianfei.uon is '用户编号(从键)';
    comment on column dianfei.mmonth is '缴费月份(从键)';
    comment on column dianfei.ddf is '电费金额';
    comment on column dianfei.djftime is '缴费日期';
    comment on column dianfei.djfzt is '缴费状态';
    comment on column dianfei.dsyjf is '上月缴费日期';
    
    alter table dianfei add constraint pk_dianfei foreign key (uon)
    references uuser (uon);
    alter table dianfei add constraint pk_dianfeia foreign key (mmonth)
    references money (mmonth);

    drop table shuifei;
    create table shuifei
    (
    uon varchar2(10) not null,
    mmonth  varchar2(6) not null,
    sdf number(6,2) not null,
    sjftime date not null,
    sjfzt varchar2(3) not null,
    ssyjf date not null
    );
    comment on table shuifei is '水表';
    comment on column shuifei.uon is '用户编号(从键)';
    comment on column shuifei.mmonth is '缴费月份(从键)';
    comment on column shuifei.sdf is '水费金额';
    comment on column shuifei.sjftime is '缴费日期';
    comment on column shuifei.sjfzt is '缴费状态';
    comment on column shuifei.ssyjf is '上月缴费日期';
    alter table shuifei add constraint pk_shuifei foreign key (uon)
    references uuser (uon);
    alter table shuifei add constraint pk_shuifeia foreign key (mmonth)
    references money (mmonth);

    drop table money;
    
    create table MONEY
    (
      mmonth varchar2(6) not null,
      mwater NUMBER(4,2) not null,
      mpower NUMBER(4,2) not null
    );
    comment on column MONEY.mmonth
      is '缴费月份(主键)';
    comment on column MONEY.mwater
      is '水费价格';
    comment on column MONEY.mpower
      is '电费价格';
      alter table MONEY add constraint pk_money primary key (mmonth);

  • 相关阅读:
    集群、分布式与微服务概念和区别理解
    博弈论的入门——nim游戏&&sg函数浅谈
    csp-2020 初赛游记
    洛谷 P2340 [USACO03FALL]Cow Exhibition G 题解
    P5687 [CSP-SJX2019]网格图 题解
    HBase 数据迁移/备份方法
    mac远程连接服务上传下载命令实例
    Redis安装详细步骤
    VMware虚拟机中的CentOS服务安装Nginx后本机无法访问的解决办法
    开发业务逻辑处理之策略模式场景使用
  • 原文地址:https://www.cnblogs.com/tfl-511/p/5962103.html
Copyright © 2011-2022 走看看