進入命令模式後,
顯示所有數據庫
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();