實機操作練習題

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