天涯尽头无女友
1、select distinct(类型 ),(select max(单价) from table where 类型 =c.类型 ) from table c。2、举例:person: { // ... name: 'A' did: 'buy a dog'};person: { // ... name: 'B'}。3、相关用法1)# 进入数据库 adminuse admin2)# 增加或修改用户密码(3.0版本用creatuser)db.addUser('name','pwd')3)# 查看用户列表db.system.users.find()4) # 用户认证db.auth('name','pwd')5)# 删除用户db.removeUser('name')6) # 查看所有用户show users7)# 查看所有数据库show dbs8)# 查看所有的 collectionshow collections9)# 查看各 collection 的状态db.printCollectionStats()10)# 查看主从复制状态db.printReplicationInfo()