mySQL資料庫相關操作自學筆記三

2021-07-24 15:23:17 字數 788 閱讀 6092

一.建立資料庫

命令:create  database  資料庫名

二.使用者管理資料庫許可權

命令:1.root管理db01全部許可權

grant  all privileges on db01.* to root;

2.root檢視許可權

2.root檢視許可權,並修改密碼

grant select  on *.* to 'root'@'%' identified by 'abc2';

三.顯示所有資料庫

命令:show databases; 注意:database的複數

四.選擇資料庫

命令:use 資料庫名

五.刪除資料庫

命令:drop database 資料庫名;

使用普通使用者登陸mysql伺服器,你可能需要特定的許可權來建立或者刪除 mysql 資料庫。 所以我們這邊使用root使用者登入,root使用者擁有最高許可權,可以使用 mysql mysqladmin 命令來建立資料庫。在刪除資料庫過程中,務必要十分謹慎,因為在執行刪除命令後,所有資料將會消失。

Mysql資料庫相關操作

檢視約束 show indexes from tab name 檢視索引 show index from tab name 檢視資料表的列 show columns from tab name 檢視資料表 show tables 檢視資料庫 show databases 刪除列alter table...

MySQL資料庫操作相關

1 mysql資料庫設定自增序號,刪除表中資料序號錯亂重新排序 alter table tablename drop column id alter table tablename add id mediumint 8 not null primary key auto increment firs...

MySQL資料庫相關操作

mysql是乙個關係型資料庫管理系統,目前屬於oracle。採用sql標準化語言,並且體積小 速度快 成本低和開源的特點,搭配php apache可組成良好的開發環境。create table t user id int primary key auto increament comment 自增主...