MySQL命令列基本命令操作

2022-01-14 15:28:54 字數 1399 閱讀 8083

進入命令模式後,

顯示所有資料庫

show databases;

選定某個資料庫

use 資料庫名;

建立資料庫

create database  資料庫名;

刪除資料庫

drop table 資料庫名;

顯示資料庫的所有表

show tables;

建立表

create table 表名;

刪除表

drop table 表名;

清空表

delete table 表名;

檢視表內容

select * from 表名;

檢視某個表的具體表結構

describe 表名;

修改表內容的值

update 表名 set 引數名=要改成的值 where 引數名=某個值;

檢視儲存過程

show procedure status;

檢視儲存過程的具體內容

show create procedure 儲存過程名

建立使用者

grant 許可權 on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"

使用者已存在賦予許可權

grant select,insert,update,delete  on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"

當然,許可權有14種許可權

select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process

不設定使用者密碼的話

grant select,insert,update,delete  on 資料庫.* to 使用者名稱@登入主機 identified by ""

刪除使用者

drop user 使用者名稱;

查詢所有使用者

select user from mysql.user;

檢視當前使用者

select user();

查詢時間

select now();

查詢資料庫版本

select version;

查詢當前選定的資料庫

select database();

參考

命令列操作MySQL的基本命令

一 從命令列登入mysql資料庫伺服器 1 登入使用預設3306埠的mysql usr local webserver mysql bin mysql u root p 2 通過tcp連線管理不同埠的多個mysql 注 mysql4.1以上版本才有此項功能 usr local webserver m...

mysql基本命令列

update user setpassword password 123456 where user root 修改密碼 flush privileges 重新整理資料庫 show databases 顯示所有資料庫 use dbname 開啟某個資料庫 show tables 顯示資料庫mysql...

dos基本命令列操作

進入某根目錄 碟符 如 d 進入d盤 資料夾下內容瀏覽 dir 單級進入某資料夾 cd 檔名 如 cd 360downloads 多級進入某資料夾 cd 檔案路徑 如 cd 360downloads aaa 單級回退 回退到上一資料夾 cd.回退到根目錄 cd 建立目錄 md 刪除目錄 rd 刪除檔...