6 表的操作 2

2021-08-28 03:40:31 字數 801 閱讀 8724

修改表名:alter table

語法形式:

alter

table old_table_name rename new_table_name;

增加字段:

在表的第乙個位置增加字段

在表的指定字段之後新增字段

use company;

desc t_tept;

alter table t_dept

add hadoop01 varchar(20)

after hadoop;

desc t_tept;

「`刪除字段

alter table t_dept

drop hadoop,hadoop01,descri;

修改欄位的資料型別:

修改欄位的名字:

同時修改欄位的名字和屬性:

修改欄位的順序:

總結:目前學到的所有對於表的操作都是以 alter table table_name 開頭 後面跟關鍵字 目前學到的關鍵字有

新增(add)刪除(drop)對錶的字段進行修改(change可以修改表的 資料名 或者 同時修改 資料型別)

(modify 修改表中資料的型別 或者修改表的字段)

資料庫6 表的操作

表是建 在資料庫中的資料結構,是 類資料的儲存 集。create table ifnot exists 表的名字 id int not null auto increment primary key comment 主 鍵 account char 255 comment 名 default adm...

6 線性表的相關操作

建立線性表 銷毀線性表 清空線性表 將元素插入線性表 將元素從線性表中刪除 獲取線性表中某個位置的元素 獲取線性表的長度 線性表在程式中表現為一種特殊的資料型別 線性表的操作在程式中的表現為一組函式 外鏈轉存失敗,源站可能有防盜煉機制,建議將儲存下來直接上傳 img umzyeoic 1610235...

2 資料表的操作

show tables create table table test id int unsigned unique primary key not null auto increment,name varchar 30 not null,age tinyint unsigned,high deci...