mysql delte MySQL常用操作 2

2021-10-18 20:37:13 字數 1609 閱讀 7544

13.4 mysql使用者管理

mysql 建立使用者以及授權

· grant all on *.* to『user1』identified by『passwd』;  grant授權 all所有許可權 *.*所有庫 『user1』@『127.0.0.1』 指定連線ip

· grant all on *.* to『user1』@『localhost』identified by『123456a』

·mysql -uuser1 -p123456a  加上localhost可以直接登入

· grant select,update,insert on db1.*to『user2』@『192.168.133.1』identified by『passwd』;針對具體許可權,db1庫所有表,給使用者user2,**ip和密碼

· grant all on db1.*to『user3』@『%』identified by『passwd』; 針對db1庫所有ip去授權

· show grants; 檢視當前使用者授權

· show grants [email protected]; 檢視指定使用者授權

要想建立個一樣使用者密碼都一樣的,只需要把畫起來的那兩行執行一遍,ip改下就ok了

13.5 常用sql語句

常用sql語句

· select count(*) from mysql.user; 檢視user表的行數

· select * from mysql.db;檢視所有內容

· select db from mysql.db;檢視db欄位

· select db,user from mysql.db; 檢視兩個字段

· select * from mysql.db where host like『192.168.%』;模糊查詢

· insert into db1.t1 values (1,』abc』); 插入資料1,abc

· update db1.t1 set name=』aaa』where id=1 三行一樣

· delte from db1.t1 where id=2  刪除id=2的行

· truncate table ab1.t1;  清空乙個表內容,結構還在

· drop table db1.t1;  清空連殼和資料

· drop database db1;  刪除資料庫

13.6 mysql資料庫的備份與恢復

mysql資料庫的備份與恢復

· mysqldump -uroot -p123456 mysql >/tmp/mysql.sql 備份庫

· mysql -uroot -p123456 mysql 

· mysqldump -uroot -p123456 mysql user > /tmp/user.sql  備份表

· mysql -uroot -p123456 mysql 

· mysqldump -uroot -p123456 -a > /tmp/123.sql備份所有庫

· mysqldump -uroot -p123456 -d mysql > /tmp/mysql.sql 只備份表結構

EXCEL常用操作(常用操作自維護)

excel常用操作find函式 作用 用於在第二個文字串中定位第乙個文字串,並返回第乙個文字串的起始位置的值,該值從第二個文字串的第乙個字元算起。語法 find find text,within text,start num 示例 find ha b2 replace函式 作用 使用其它文字字串並根...

jquery常用操作

操作下拉列表 新增選項列表 this get 0 options.add new option text,value 清空列表 this get 0 options.length 0 刪除指定索引的選項 this get 0 remove index 設定需要選中項的值 this get 0 val...

my sql常用操作

1.grant allprivilegeson tomonty localhost identified by something with grant option monty 可以從任何地方連線伺服器的乙個完全的超級使用者,但是必須使用乙個口令 something 做這個。注意,我們必須對 mo...