程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MYSQL入門知識 >> MySQL常用資源

MySQL常用資源

編輯:MYSQL入門知識
 

常用命令
登錄數據庫

mysql -h localhost -uroot -p

導出數據庫

mysqldump -uroot -p db > db.sql

導入數據庫

mysql -uroot -p db < db.sql
// or
mysql -uroot -p db -e "source /path/to/db.sql"

開啟遠程登錄

grant all privileges on ss.* to 'root'@'%' indentified by 'passoword' with grant option;
// or
update user set Host="%" and User="root"
// 注意%是不包含localhost的
flush privileges;

創建用戶

CREATE USER 'test'@'localhost' IDENTIFIED BY 'password';
grant all privileges on *.* to test@'localhost' identified by 'test';

創建表

CREATE SCHEMA testdb DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;

賦予數據庫權限

GRANT ALL ON testdb.* TO 'test'@'localhost';

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved