摘要: category d的字段是加索引的。mysql> select name,category,id from exam group by category;+--------------+----------+----+| name | category | id |+--------------+----------+----+| hcSvgzyCRKj | Q | 1 || XaQrpYuOxkLM | T | 2 |+--------------+----------+----+2 rows in set (0.72 sec)mysql... 阅读全文
posted @ 2013-01-25 12:09 尹少爷 阅读(256) 评论(0) 推荐(0) 编辑
摘要: ubuntu 12.04 安装mongodb,apt-get install mongodbmongodb的创建数据库,我们可以直接use 数据库名称,mongodb会延迟创建该数据库,use 数据库名称db.createCollection()//创建集合db.createCollection(name[,{capped: <boolean>,size: <value>,max <bytes>}])show collections//显示集合db.collection.insert();//db.collection.insert(document)col 阅读全文
posted @ 2013-01-25 10:31 尹少爷 阅读(223) 评论(0) 推荐(0) 编辑