易截截图软件、单文件、免安装、纯绿色、仅160KB

mysql添加用户

mysql添加用户方法 
建立数据库gamesp
create database gamesp;

加用户
grant  all  on  数据库名.*   to   用户

@localhost  identified  by  '密码';
grant all on gamesp.* to
newuser@localhost
identified by
'password';
说明:
(1)grant all 赋予所有的权限
(2)gamesp.* 数据库 gamesp 中所有的表
(3)newuser 用户名
(4)@localhost 在本地电脑上的 mysql server 服务器
(5)identfified by 'password' 设置密码
删除用户
use mysql
mysql
>Delete
from user Where User="xxxxx" and Host="localhost";
mysql
>flush
privileges;


相关文档:

[转]mysql alter 语句用法,添加、修改、删除字段等


mysql alter 语句用法,添加、修改、删除字段等       
     
     
//主键549830479      
     
   alter table tabelname add new_fiel ......

MySQL常用的导入导出命令

常用的:
导出
mysqldump -hyour_host -uyour_username -pyour_password database_name > file.sql
导入
mysql -hyour_host -uyour_username -pyour_password database_name < file.sql
或者先用mysql客户端登陆后,
>\. file.sql
也可以完成导入功能
上面的两个命令结合起来用,可以完成将一个数据库的 ......

MYSQL和ORACLE的一些操作区别

MYSQL和ORACLE的一些操作区别
有很多应用项目, 刚起步的时候用MYSQL数据库基本上能实现各种功能需求,随着应用用户的增多,数据量的增加,MYSQL渐渐地出现不堪重负的情况:连接很慢甚至宕机,于是就有把数据从MYSQL迁到ORACLE的需求,应用程序也要相应做一些修改。本人总结出以下几点注意事项,希望对大家有所帮助。
1.自 ......

在mysql数据库中修改root的密码

下面我给大家介绍几种在mysql数据库中修改root密码的方法
方法一:
原始密码是 ckh
mysql -uroot -pckh
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7 to server version: 5.0.22-community-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
my ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号