第一頁
返回
繼續
最後一頁
概覽
圖形
修改資料庫結構
加欄位
alter table m1 add column photo text;
刪欄位
alter table m1 drop column photo;
刪索引檔
drop index m1_ndx on m1(name);
刪資料表
drop table main;