資料庫表的操作

2021-08-14 16:59:51 字數 1219 閱讀 4129

create table 表名(

屬性名1 資料型別,

屬性名2 資料型別,

屬性名3 資料型別,

alter table 以前的表名 rename 新的表名;

alter table 表名 add 屬性名 資料型別(長度);//增加在表的最後一位
alter table 表名 add 屬性名 資料型別 first;//增加在表的第一位
alter table 表名 add 屬性名 資料型別 after 屬性名;//在特定字段後面jiaru

alter table 表名 modify 屬性名 資料型別;//修改欄位的資料型別
alter table 表名 change 舊屬性名 新屬性名 資料型別;//修改屬性名
alter table 表名 change 舊屬性名 新屬性名 新資料型別;//同時修改資料型別和屬性名稱
alter table 表名 modify 屬性名1 資料型別 after 屬性名2;//把屬性1 的字段換到屬性2之後
alter table 表名 modify 屬性名1 資料型別 first 屬性名2;//把屬性1 的字段換到屬性2之前

alter table 表名 drop 屬性名;

資料庫表 庫操作

一 庫的管理 1 建立庫 create database if not exist 庫名 2 庫的修改 rename database 舊庫名 to 新庫名 修改資料庫的字符集 alter database 資料庫名稱 character set 字符集名稱 3 庫的刪除 drop database...

資料庫表的操作

create table table name field1 datatype,field2 datatype,field3 datatype character set 字符集 collate 校驗規則 engine 儲存引擎 說明 舉例 create table users id int nam...

資料庫表的操作

在mysql資料庫中,表是一種很重要的資料庫物件,是組成資料庫的基本元素,由若干個字段組成,主要用來實現儲存資料記錄。表的操作包含建立表 查詢表 修改表和刪除表,這些操作是資料庫物件的表管理中最基本也是最重要的操作。1.從最簡單的表操作開始 建立班級表 id 名稱 班主任 101 六年級一班 馬老師...