第1章 初識MySQL 課後作業

2021-08-22 07:17:30 字數 1284 閱讀 4417

#圖書資訊表

desc `book`;

drop table if exists `book`;

create table `book`(

`bid`char comment'圖書編號'primary key,

`bname`char comment'圖書書名',

`author`char comment'作者姓名',

`pubcomp`char comment'出版社',

`pubdate`datetime  comment'出版日期',

`bcount`int comment'現存數量',

`price`float comment'單價'

)#圖書借閱表

desc `borrow`;

drop table if exists `borrow`;

create table `borrow`(

`rid`char comment'讀者編號',

`nif`char comment'圖書編號',

`lenddate`datetime default now() comment'借閱日期',

`willdate`datetime comment'應歸還日期',

`retundate`datetime comment'實際歸還日期',

primary key(`rid`,`nif`,`lenddate`)

)#讀者資訊表

desc reader;

drop table if exists `reader`;

create table `reader`(

`rid`char comment'讀者編號'primary key,

`rname`char comment'讀者姓名',

`lendnum`int comment'已借書數量',

`raddress`char comment'聯絡位址'

)#罰款記錄表

desc `penalty`;

drop table if exists `penalty`;

create table `penalty`(

`rid`char comment'讀者編號',

`bid`char comment'讀書編號',

`pdate`datetime comment'罰款日期',

`ptype`int comment'罰款型別',

`amount`float comment'罰款金額',

primary key(`rid`,`bid`,`pdate`)

)

第4章課後作業

5.設計bird fish類,都繼承自抽象類animal 實現其抽象方法info public abstract class dongwu public class bird extends animal override void info 6.兜兜家養了兩隻家禽 乙隻雞和乙隻鴨,請用物件導向思想...

課後作業1

1 回想一下你初入大學時對計算機專業的暢想 2 即將大三的你,對照前人們走過的路和描述未來發展,現在的你 3 大三是乙個人生選擇的十字路口,考研 工作 考公 出國,不同的選擇在大三就有不同的努力方向。而無論昇本還是工作的每條路徑,也有許多不同的分支。4 你願意為了乙個你感興趣的 或得到實戰鍛鍊的專案...

課後作業1

學號 2016035107162 我是軟體4班的馬巨集源 我的愛好是打籃球 都還行吃習慣了。1 回想一下你初入大學時對計算機專業的暢想 高中時候愛打遊戲,但是玩玩的就不怎麼玩了,就高中的時候對計算機產生了興趣。最近兩年接觸的課程都很基礎,對於什麼都不會的我有很大的幫助。喜歡計算機領域,現在還不算太擅...