一、資料庫連線操作:
建立連線 create database database_name; 成功會顯示query ok,1 row afected(0.00sec)
檢視資料庫 show database; 會顯示所有資料庫
進入資料庫 use databasetest; 成功後進入資料庫
刪除資料庫 drop database database_name 刪除名為database_name 的資料庫
二、資料庫表操作
建立表 create table table_name(
欄位一屬性名 資料型別 not null(非空約束) default(字段預設值) unique key(uk)(字段值唯一) primary key(pk)(主鍵約束) auto_increment(自增約束) foreign key(fk)(外來鍵約束),
欄位二屬性名 資料型別 not null(非空約束) default(字段預設值) unique key(uk)(字段值唯一) primary key(pk)(主鍵約束) auto_increment(自增約束) foreign key(fk)(外來鍵約束),
) 檢視表 describe table_name
檢視表詳情 show create table table_name
刪除表 drop table table_name
修改表 修改表名 alter table table_name rname new_table_name
增加字段 alter table table_name add 屬性名 屬性型別 出現位置(first--》出現在第乙個位置,after(在指定欄位後出現)) 屬性名(此處可有可無)
刪除表 alter table table_name drpo 屬性名
修改字段 alter table table_name modify 屬性名 資料型別
修改欄位名字和屬性 alter table table_name change 舊屬性名 新屬性名 新資料型別
修改字段順序 alter table table_name modify 屬性1 資料型別 first|after 屬性2 ---------表示將屬性1移動到屬性2前或者後
MySQL學習筆記(一)資料庫的操作
語法格式 create database if not exists 資料庫名 default character set 字符集名 default collate 校對規則名 資料庫名 建立資料庫的名稱。mysql 的資料儲存區將以目錄方式表示 mysql 資料庫,因此資料庫名稱必須符合作業系統的...
《MySQL必知必會》筆記一 資料庫入門及資料檢索
資料庫是儲存表和其他 sql結構的容器 客戶機 伺服器軟體,伺服器部分負責所有的資料訪問和處理,執行在資料庫伺服器上 關於資料的增刪 更新等的請求都由伺服器軟體完成,這些請求來自執行客戶機的計算機 客戶機是與使用者打交道的軟體 表由行和列組成,行包含了某個物件的所有資訊,列是某個分類的所有資訊,也就...
MySQL資料庫(一) 資料庫基礎
資料庫介紹 db database 資料庫 dbms database management system 資料庫管理系統 dba 資料庫管理員 database administrator 資料 描述事物的符號記錄稱為記錄 數字 文字 影象 聲音 表 不同的組織記錄在一起形成表 資料庫 資料的集合...