刪改
查建立資料表
create table user(表名)
( id(字段) int null(字段型別)[屬性],
name(字段) varchar(30)(字段型別)[屬性]
);
新增字段alter table (表名) add (欄位名) 列型別 [屬性]
mysql\data目錄下的資料庫目錄中將自動生成乙個對應名稱的.frm檔案
data目錄是乙個隱藏檔案,直接在目錄輸入框複製貼上c:\programdata\mysql\mysql server 5.7\data 就可以看到data檔案。
刪除資料表
drop table (要刪除的表名)
;
刪除表的某一列alter table (表名) drop (要刪除的列名);
更改表名alter table (舊表名) rename as (新錶名)
;
修改字段型別alter table (表名) modify (欄位名) 列型別[屬性]
;
修改字段alter table (表名) change (舊欄位名)
(新欄位名)
(列型別)
[屬性]
;
檢視表內容select * from (表名)
;
檢視表結構desc (表名)
;
MySQL資料表操作
建立資料表 create table 資料表名示例 create temporary table if not exists 資料表名 col name type 完整性約束條件 col name type 完整性約束條件 table options select statement 建立使用者表 ...
MySQL 資料表操作
重新命名表 複製表刪除表 格式 create tempoprary table if not exists 表名 create definition,table options select statement 引數說明 關鍵字說明 create definition 表的列屬性。要求建立表時,至少...
MySQL資料表操作
目錄 資料表介紹 資料表列出 列出當前資料庫的所有資料表 建立資料表 指定資料庫建立表 在當前開啟的資料庫中建立表 建立表時指定校對集 查詢表詳情 指定資料庫查詢表建立資訊 在當前開啟的資料庫中查詢表建立資訊 查詢表詳情 show 查詢表詳情 desc 資料表修改 修改表名稱 修改表字符集 資料表刪...