1.刪除欄位的語法格式如下
alter table 表名drop欄位名
2.新增新字段
alter table 表名add新欄位名新資料型別{新約束條件}【first after】
3.修改欄位名(或者資料型別)
(1)修改表的欄位名(以及資料型別)的語法格式:alter tabel表名change舊欄位名新欄位名型別
修改約束條件:
alter table 表名 add constraint約束名約束型別(欄位名)
刪除約束條件:
alter table 表名 drop primary key (主鍵)
刪除外來鍵要制定外來鍵的約束名成:alter table表名drop foreign key 約束名
修改表名的其他選項
alter table 表名engine=新的儲存
使用insert語句向資料庫表插入資料
insert into 表名(插入的資料目錄,插入的資料目錄)values(『資料』,『資料』),(『多條語句』)
修改表中的資料
updat **名 set 列明=『』where 列明=『』【這個是在哪一行】
刪除表中的資料
delete from 表名 where 資料欄=『資料』
更改資料欄名稱
alter table 表名 change 欄位名 新名字 datetime
重新命名表名
alter table 舊表名 rename 新錶名
查詢語法
select 《列名》
form 《表名》
查詢全部加*
部分在裡面寫
where 條件多個條件用and連線,如果滿足同乙個條件用all連線 between and 滿足兩個條件
order by ***【以什麼排序】 desc或者arc【公升序降序】
六、變數
1.字元
(1).變數一@開頭
(2).系統變數以@@開頭
七、檢視
create view 名字 as drop view view_name 刪除檢視
select * from 檢視名 檢視檢視
mysql學習筆記 51 mysql學習筆記
初學mysql時整理,隨時更新 資料操作 增 insert into 表名 字段列表 values 值列表 值列表 如果要插入的值列表包含所有字段並且順序一致,則可以省略字段列表。可同時插入多條資料記錄!replace 與 insert 完全一樣,可互換。insert into 表名 set 欄位名...
mysql學習筆記 51 Mysql 學習筆記
一.首先進入mysql mysql u root p新增使用者許可權設定 grant all privileges on to jerry localhost identified by aa1234567 只允許本機訪問 grant all privileges on to jerry 10.80...
mysql做筆記 mysql學習筆記
alter table 新增,修改,刪除表的列,約束等表的定義。檢視列 desc 表名 修改表名 alter table t book rename to bbb 新增列 alter table 表名 add column 列名 varchar 30 刪除列 alter table 表名 drop ...