- 以下列步驟完成 mysql 資料庫及資料表建立、刪除。
- 遠端登入 kvm6 虛擬機。
- 以 root 身份登入 mysql。
- 在資料庫 dbx 中建立資料表 tblx,包含下列欄位:
- id int not null auto_increment,
- title varchar(100) not null,
- author varchar(40) not null,
- score tinyint,
- submission_date date,
- primary key (id)
- 建立 createtbl.php 產生資料庫 dbxphp 中的資料表 tblxphp,資料表內容與 tblx 相同。
- 建立 droptbl.php 刪除資料庫 dbxphp 中的資料表 tblxphp。