引子
alter table 表名 add/change/modify/drop
alter
table 表名 add 列名 型別;
例:alter
table students add birthday datetime;
alter
table 表名 change 原名 新名 型別及約束;
例:alter
table students change birthday birth datetime not
null;
alter
table 表名 modify 列名 型別及約束;
例:alter
table students modify birth date
notnull;```
- 4.修改表-刪除字段
alter table 表名 drop 列名;
例: alter table students drop birthday;
5.刪除表
drop table 表名;
例: drop table students;
-6.檢視表的建立語句
show create table 表名;
例: show create table classes;
## 增刪改查(curd)
`curd的解釋: 代表建立(create)、更新(update)、讀取(retrieve)和刪除(delete)`
### 查詢基本使用
- 查詢所有列
select * from 表名;
例: select * from classes;
-查詢指定列
-可以使用as為列或表指定別名
select 列1,列2,… from 表名;
例: select id,name from classes;
#### 增加
-說明:主鍵列是自動增長,但是在全列插入時需要佔位,通常使用0或者 default 或者 null 來佔位,插入成功後以實際資料為準
-全列插入:值的順序與表中字段的順序對應
insert into 表名 values(…)
例: insert into students values(0,』郭靖『,1,』蒙古』,』2016-1-2』);
-部分列插入:值的順序與給出的列順序對應
insert into 表名(列1,…) values(值1,…)
例: insert into students(name,hometown,birthday) values(『黃蓉』,』桃花島』,』2016-3-2』);
#### 修改
update 表名 set 列1=值1,列2=值2… where 條件
例: update students set gender=0,hometown=』北京』 where id=5;
#### 刪除
delete from 表名 where 條件
例: delete from students where id=5;
``
- 邏輯刪除,本質就是修改操作(在一些像使用者登出時使用,並沒有真正的刪除,只是對這個字段進行操作達到刪除的效果)
update students set isdelete=1 where id=1;`
MySQL學習筆記 01 入門
1.資料庫的英文單詞 database 簡稱 db 2.什麼資料庫?用於儲存和管理資料的倉庫。3.資料庫的特點 1.持久化儲存資料的。其實資料庫就是乙個檔案系統 2.方便儲存和管理資料 3.使用了統一的方式運算元據庫 sql 4 配置 mysql服務啟動 1.手動。2.cmd services.ms...
MYSQL學習筆記 01 簡單使用
以下很多內容來自於網路 建立使用者 host 使用者位址,表示可以遠端,localhost表示本地,也可以指定具體ip create user username host identified by password 然後使用grant語句賦予該使用者許可權 grant all privileges...
學習筆記 01
在網上搜尋了一些資料,由於不知道哪些入門容易,所以先看看找到的資料,也對.net有個初步了解。將資料作了個整理 net framework 執行環境 visual studio net 開發工具 microsoft windows server 2003 企業伺服器 microsoft office...