mysql的一些常用操作

來源:互聯網
上載者:User

標籤:常用操作   匯出   database   min   variables   var   cte   ike   重啟   

grant all privileges on test_db.* to [email protected] identified by ‘123456‘;
grant all on test_db.* to [email protected] identified by ‘123456‘;
grant select,insert,update,delete on *.* to [email protected]”%” identified by ‘123456’;
給 mysql 資料庫授權。
flush privileges;重新整理許可權
mysqldump –uroot –p123456 test_db >/tmp/test.db.sql ;MySQL 備份或匯出
mysql –uroot –p123456 test_db < /tmp/test.db.sql ;MySQL 匯入
mysqladmin –uroot –p123456 password newpassword ;修改 MySQL root 密碼
drop database test_db ; 刪除資料庫
drop table test01 ; 刪除表
delete from test01 ; 清空表內容
show variables like ‘%char%‘; 查看資料庫字元集
修改 Mysql 字元集為 UTF-8 的方法:在/etc/my.cnf 對應如下配置段加入相應命令。
[client]欄位裡加入 default-character-set=utf8
[mysqld]欄位裡加入 character-set-server=utf8
[mysql]欄位裡加入 default-character-set=utf8
然後重啟 MySQL 服務即可。

mysql的一些常用操作

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.