首先看看这条sql的作用
EXPLAIN SELECT * FROM TABLE ORDER BY rand( ) LIMIT 1
从表TABLE中随机的取出一行
做explain 后为
1 SIMPLE table ALL NULL NULL NULL NULL 607 Using temporary; Using filesort
建立临时表,并做文件排序,最后取一行,这个事得不偿失
mysqldba的成长!
EXPLAIN SELECT * FROM TABLE ORDER BY rand( ) LIMIT 1
1 SIMPLE table ALL NULL NULL NULL NULL 607 Using temporary; Using filesort
svn: Unrecognized URL scheme
[dba@mysqldba ~]# svn --version
svn, version 1.5.5 (r34862)
compiled Feb 10 2009, 17:58:37
Copyright (C) 2000-2008 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).
The following repository access (RA) modules are available:
* ra_neon : Module for accessing a repository via WebDAV protocol using Neon.
- handles 'http' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
- with Cyrus SASL authentication
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme