MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

mongodb druckt json ohne Leerzeichen, d.h. unschönes json

var cursor = db.collection.find().sort({_id:-1}).limit(10000);
while(cursor.hasNext()){
    printjsononeline(cursor.next());
}