MySQL执行外部sql脚本文件的命令
Mysql\bin\mysql –u用户名 –p密码 –D数据库<sql脚本文件
D:\mysql\bin\mysql –uroot –p123456 -Dtest<d:\test\ss.sql
如果在sql脚本文件中使用了use 数据库,则-D数据库选项可以忽略
修改root密码
mysql -uroot -p
use mysql;
update user set password=passworD("test") where user='root';
flush privileges;
exit;
问题:提示user表不存在
解决办法:use mysql; select * from user;
MySQL怎么用命令行创建一个数据库
create database <数据库名>
mysql创建用户
insert into mysql.user(Host,User,Password) values('localhost','lwd',password('aiqishop'));
insert into mysql.user(Host,User,Password) values('localhost','uibs',password('uibs'));
GRANT 许可权 ON 数据库名.表名 TO 新用戶名@主机名 IDENTIFIED BY '密码';
grant all on aqh.* to aiqishop@localhost identified by 'aiqishop';
grant all on uibs.* to uibs@localhost identified by 'uibs';
允许远程访问MySQL
grant all on uibs.* to uibs@'%' identified by 'uibs';
Windows系统在命令行中登录MySQL数据库
1、mysql的bin目录
2、mysql -hlocalhost -uroot -p
120.24.240.105
数据库名称:aiqishop
数据库用户名:root aiqishop
数据库密码:aiqishop.com(aiqishop105) aiqishop
数据库用户名:aiqishop104
数据库密码:aiqishop104
显示该数据库里的所有表
show tables;
修改表结构
alter table table_name add field_name varchar(10) not Null;
alter table table_name modify column field_name varchar(50);
alter table tablename change old_field_name new_field_name old_type;
alter table tablename drop column colname;
alter table activity_participate modify openid varchar(64) null;
alter table stock_info change getPriceCurrency getPriceCurrency varchar(50) default null AFTER getPrice
window环境使用mysql
启动与停止
运行cmd
C:\> C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqld --console
停止数据库
运行cmd
C:\> C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqladmin -u root shutdown
windows下mysql新建账户访问数据库
mysql -u liyong -p