一個簡單資料庫設計例子,簡單資料庫設計例子

來源:互聯網
上載者:User

一個簡單資料庫設計例子,簡單資料庫設計例子

一個曾經做過的簡單的管理系統中資料庫設計的例子,包括設計表、ER圖、建模、指令碼.


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

  • 項目資訊

Project Name:   Book Manager System
DB:                MySQL5.5
DB Name:         db_library
Tables:
1). tb_book_info
2). tb_user
3). tb_admin_info
4). tb_borrow_return
5). tb_book_type


  • 表設計



  • E-R圖


  • PowerDesigner建模


  • 指令碼

C:\Program Files\MySQL\MySQL Server5.5\bin>mysql -u root -pabcd<c:\admin.sql
NOTE:
1.MySQL/bin目錄,執行mysql -u root -pabcd <c:\admin.sql
2.練慣用的資料庫名:library  項目中資料庫為db_library
/*==============================================================*/
/* Table: tb_admin_info   負責管理員登陸的表                         */                         
/*==============================================================*/
drop database if exists library; # 練慣用的資料庫,如果存在則刪除。
create database library;           # 建立資料庫。
use library;                          # 開啟資料庫,注意用分號。
create tabletb_admin_info          # 建練慣用表。
(
admin_id int(3) auto_increment not null primary key,   # 主鍵,非空,自增長。
admin_user varchar(15) not null,
admin_pwd varchar(15) not null
);
insert into tb_admin_infovalues('001','Tom','Jerry');  # 插入兩條資料,用於做測試。
insert into tb_admin_infovalues('002','root','root');  # 插入兩條資料,用於做測試。

 


相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.