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

MySQL常用命令与基本命令操作


1、MySQL常用命令 ­
­
create database name; 创建数据库 ­
­
use databasename; 选择数据库 ­
­
drop database name 直接删除数据库,不提醒 ­
­
show tables; 显示表 ­
­
describe tablename; 表的详细描述 ­
­
select 中加上distinct去除重复字段 ­
­
mysqladmin drop databasename 删除数据库前,有提示。 ­
­
显示当前mysql版本和当前日期 ­
­
select version(),current_date; ­
­
2、修改mysql中root的密码: ­
­
shell>mysql -u root -p ­
­
mysql> update user set password=password(”xueok654123″) where user=’root’; ­
­
mysql> flush privileges //刷新数据库 ­
­
mysql>use dbname; 打开数据库: ­
­
mysql>show databases; 显示所有数据库 ­
­
mysql>show tables; 显示数据库mysql中所有的表:先use mysql;然后 ­
­
mysql>describe user; 显示表mysql数据库中user表的列信息); ­
­
3、grant ­
­
创建一个可以从任何地方连接服务器的一个完全的超级用户,但是必须使用一个口令something做这个 ­
­
mysql> grant all privileges on *.* to user@localhost identified by ’something’ with ­
­
增加新用户 ­
­
格式:grant select on 数据库.* to 用户名@登录主机 identified by “密码” ­
­
GRANT ALL PRIVILEGES ON *.* TO monty@localhost IDENTIFIED BY ’something’ WITH GRANT OPTION; ­
­
GRANT ALL PRIVILEGES ON *.* TO monty@”%” IDENTIFIED BY ’something’ WITH GRANT OPTION; ­
­
删除授权: ­
­
mysql> revoke all privileges on *.* from root@”%”; ­
­
mysql> delete from user where user=”root” and host=”%”; ­
­
mysql> flush privileges; ­
­
创建一个用户custom在特定客户端it363.com登录,可访问特定数据库fangchandb ­
­
mysql >grant select, insert, update, delete, create,drop on fangchandb.* to custom@ it363.c


相关文档:

mysql replication


<!--
/* Font Definitions */
@font-face
{font-family:Courier;
panose-1:2 7 4 9 2 2 5 2 4 4;
mso-font-alt:"Courier New";
mso-font-charset:0;
mso-generic-font-family:modern;
mso-font-format:other;
mso-font-pitch:fixed;
mso-font-signature:3 0 0 0 1 0;}
@font-face
{f ......

mysql优化技巧

1、选取最适用的字段属性
MySQL 可以很好的支持大数据量的存取,但是一般说来,数据库中的表越小,在它上面执行的查询也就会越快。因此,在创建表的时候,为了获得更好的性能,我们可以将表中字段的宽度设得尽可能小。例如,在定义邮政编码这个字段时,如果将其设置为CHAR(255),显然给数据库增加了不必要的空间,甚至使用V ......

Mysql 数据库字符集转换及版本升级/降级的详细教程

看到不少用户反映转换完以后是乱码的情况,出现这种现象的主要原因是这类用户使用的都是mysql4.1以上的版本.下面作一个说明,希望出现这个问题的朋友都能耐心的把这个文档看完!!!
MySQL 4.1开始,对多语言的支持有了很大变化 (这导致了问题的出现)。尽管大部分的地方 (包括个人使用和主机提供商),MySQL 3、4.0 仍然占主导地 ......

深入研究Mysql字符集设置以及排序方式

根据Chaos Wang的PPT整理而成, 在此再次感谢Chaos Wang的此次TechTalk
基本概念
• 字符(Character)是指人类语言中最小的表义符号。例如'A'、'B'等;
• 给定一系列字符,对每个字符赋予一个数值,用数值来代表对应的字符,这一数值就是字符的编码(Encoding)。例如,我们给字符'A'赋予数值0,给字符'B'赋予数值 ......

jsp访问MySQL数据库错误

不知道是不是驱动加载有问题,在MyEclipse中写了简单的数据库测试程序找不到驱动类,希望大虾能给予帮助,谢了。
严重: Servlet.service() for servlet jsp threw exception
java.lang.ClassNotFoundException: org.aspectj.lang.Signature
 at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClas ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号