二、基本資料庫管理命令
三、sql語句
1、登入mysql
mysql -uroot -p
2、檢視資料庫的列表資訊
show
databases
;
3、切換庫並檢視當前庫的所有表
use 資料庫名;
show
tables
;
4、顯示表的結構
describe
[資料庫名.
]表名
建立資料庫
create
database 資料庫名
建立資料表
create
table 表名 (字段定義...
...)
刪除資料表
drop
table student;
刪除資料庫
drop
table student;
插入新資料庫
insert
into 表名(欄位1,欄位2,……)values(欄位1的值,欄位2的值,……)
修改資料記錄
update 表名 set 欄位名=值 where 條件
刪除資料記錄
delete
from 表名 where 條件表示式
查詢資料記錄
select 欄位名 from 表名 where 條件表示式
檢視使用者許可權
show grants for
'使用者名稱'
@'**位址'
;
撤銷使用者許可權
revoke 許可權列表 on 資料庫名.表名 from
'使用者名稱'
@'**位址'
;
從零開始的MySQL學習,資料庫索引
二 如何建立索引 三 檢視索引 四 刪除索引 create index 索引的名字 on tablename 列的列表 舉例 create table stu01 id int 2 not null name varchar 10 not null score int 4 index index s...
從零開始學習MySQL 資料庫管理 003
mysql訪問控制由兩部分構成 許可權位置 mysql 資料庫包含五個主要的授權表 create user yourname identified by password create user yl localhost identified by yl 新建本地賬戶 create user yl ...
資料庫從零開始 3
繼續資料庫操作 1 列轉行 原始資料庫 select c.id,語文 課程,yw 成績 from cjb c union all select c.id,數學 課程,sx from cjb c 轉化後的資料 2 行轉列 將 1 中轉化後的表建立檢視,名稱 v myview create view v...