推荐上这个网站上去找资料吧,应该可以找到你需要的,中文的mysql网站,
http://www.mysql.cn/
这是她们的论坛,有很多有用的资源
http://bbs.mysql.cn/
mysql5和mysql4的区别你可以查这个网站上面的mysql5和mysql4官方手册,查看地址:
http://doc.mysql.cn/
希望我的回答能帮你解决问题 谢谢!
参考mysql官方的回答:当你的表示myisam时:
SELECT * FROM tbl -- this will do a "table scan". If the table has never had any DELETEs/REPLACEs/UPDATEs, the records will happen to be in the insertion order, hence what you observed.
大致意思为,一个myisam引擎表在没有任何的删除,修改 *** 作下,执行 select 不带order by,那么会按照插入顺序进行排序。
If you had done the same statement with an InnoDB table, they would have been delivered in PRIMARY KEY order, not INSERT order. Again, this is an artifact of the underlying implementation, not something to depend on.
对于innodb引擎表来说,在相同的情况下,select 不带order by,会根据主键来排序,从小到大
请求先送达 web server 再送到 db server如果说 web server 没有问题的话 连接断掉也可能是 db server 连接数不够导致的进入 mysql 命令行 show processlist 看下当前 db 连接数再查看 db 配置文件 dbcp.properties 配置最大连接数是多少就知道是不是 db 连接数的问题欢迎分享,转载请注明来源:内存溢出
评论列表(0条)