连接数据库 >mysql -u用户名 -p密码 或者: >mysql -u用户名 -pEnter password: ****** 用户管理 创建用户 create user ‘username’@’localhost’ identified by ‘password’; 用户授权 grant privileges on database_name.table_name to ‘username’@’localhost’…
Leave a CommentTag: MySQL
Dumping wordpress database Using following codes to dump your wordpress database and replacing bold words according to your environment. You can find wordpress.sql in current…
Leave a Comment