数据库 database 命令
********************************* DATABASE 创建数据库 CREATE DATABASEhaodlDB
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 添加用户及权限 grant all privileges on . to 创建的用户名 @"%" identified by "密码"; grant all privileges on . to alexruo@"%" identified by "yuan0.123"; 刷新信息 flush privileges; 修改账号密码 UPDATE user SET Password=password('123456') WHERE user='root'; linux系统下: MySql导入数据库:mysql>source /home/abc/abc.sql;(source 文件所处路径) MySql导出数据库:mysql安装路径/mysql/bin/mysqldump -uroot -p -d test > databasename.sql 在windows下 导入: mysql> source D:/1010/test.sql;//导入D盘下1010目录下的test.sql脚本 导出: D:\web\mysql\bin\mysqldump.exe -uroot -proot www_tong_com>D:\1010\test2.sql //出www_tong_com数据库为test2.sql文件脚本 *********************************