深度理解token
阿新 • • 發佈:2020-11-27
1、登入mysql資料庫
mysql -u 使用者名稱 -p
回車後輸入密碼。
2、檢視資料庫
show databases;
3、建立資料庫
create database 資料庫名稱;
4、選擇訪客特定資料庫
use database名字;
5、檢視資料庫中所有表
show tables;
6、檢視資料庫表結構
describe table名。
7、向自增ID的表插入記錄
方法一:insert into 表名 (name,date) values(‘張三’,‘‘1970-12-11’);//除自增ID外的其他欄位都賦值
方法二:insert into 表名values(0或null,‘張三’,‘‘1970-12-11’)//自增ID的值賦予0或null。
8、刪除表
drop table 表名;
9、刪除資料庫
drop database 資料庫名;
10、增加mysql使用者
grant select,insert,delete,update on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"
(1)允許新增使用者在任意機器訪問資料庫,執行被授權的操作
grant select,insert,delete,update on 資料庫.* to 使用者名稱1@“%” identified by "密碼”;
(2)僅允許新增使用者在特定機器訪問資料庫,執行被授權的操作
grant select,insert,delete,update on 資料庫.* to 使用者名稱2@localhost identified by "密碼”;//這裡的特定機器是本機