alter table 語句用於建立後對錶的修改, 基礎用法如下:
基本形式: alter table 表名 add 列名 列資料型別 [after 插入位置];
示例:在表的最後追加列 address:
alter table students add address char(60);
在名為 age 的列後插入列 birthday:
alter table students add birthday date after age;
基本形式: alter table 表名 change 列名稱 列新名稱 新資料型別;
示例:將表 tel 列改名為 telphone:
alter table students change tel telphone char(13) default "-";
將 name 列的資料型別改為 char(16):
alter table students change name name char(16) not null;
基本形式: alter table 表名 drop 列名稱;
示例:刪除 birthday 列:
alter table students drop birthday;
基本形式: alter table 表名 rename 新錶名;
示例:重新命名 students 表為 workmates:
alter table students rename workmates;
基本形式: drop table 表名;
示例: 刪除 workmates 表:
drop table workmates;
基本形式: drop database 資料庫名;
示例: 刪除 samp_db 資料庫:
drop database samp_db;
mysql 建立表 修改表
一 建立表 1.建表語句 create table 表名 列名稱1 列型別 列引數 not null default 列名稱2 列型別 列引數 not null default 列名稱n 列型別 列引數 not null default engine myisam innodb charset ut...
建立修改mysql表練習
例 建立乙個儲存引擎為innodb,字符集為gbk的表test,欄位為id int和name varchar 16 並完成下列要求 1 批量插入資料 1,newlhr 2,小麥苗 3,xiaomaimiao 2 把資料id等於1的名字newlhr更改為oldlhr。3 在字段id後插入age欄位,型...
MySql 表 建立表 刪除表 修改表
一 建立表 建立表語法 create table table name field1 datatype,field2 datatype,field3 datatype character set 字符集 collate 校驗規則 engine 儲存引擎 預設儲存引擎 mysql create tab...