1-CMD登陆MSQL
D:\Program Files (x86)\MySQL\MySQL Server 5.0>mysql -hlocalhost -uroot -p888888
port:3306
启动mysql服务
net start mysql
关闭mysql服务
net stop mysql
2-MySql操作工具:
MySql WorkBench
SQLyog
DbVisual
3-MySql中文手册:
http://wenku.baidu.com/view/e5f0af164b35eefdc8d33351.html?re=view
4-MySql的Root用户
用户名:root
密码:888888
5-MySql创建新用户
用root新建一个有指定权限的新用户
grant select,update,delete,insert on *.* to newuser@localhost identified by 'password';
http://blog.csdn.net/vessalasd1
7-JAVA对MYSql的增删改查