3
我在Mongo DB中有一個名爲logins的集合。 我想查看該集合中存在的所有行,但顯示20條記錄後,其顯示內容更多。如何查看MongoDB的更多記錄
請讓我知道,我怎麼能看到剩餘的記錄?
db.logins.find()
{ "_id" : ObjectId("4d779d36f282963924633b01"), "env_name" : "qa", "cust_id" : "kiran", "epoch" : "1299684662765", "created_at" : "2011-03-09 10:31:02.765" }
{ "_id" : ObjectId("4d779db7f282963925633b01"), "env_name" : "qa", "cust_id" : "pavan", "epoch" : "1299684791157", "created_at" : "2011-03-09 10:33:11.157" }
{ "_id" : ObjectId("4d779dcff282963926633b01"), "env_name" : "qa", "cust_id" : "hhhiuy", "epoch" : "1299684815595", "created_at" : "2011-03-09 10:33:35.595" }
{ "_id" : ObjectId("4d779e26f282963927633b01"), "env_name" : "qa", "cust_id" : "testaccount", "epoch" : "1299684902416", "created_at" : "2011-03-09 10:35:02.416" }
------
------
------
has more
在此先感謝。
我怎樣才能看到其餘的記錄?
非常感謝。 – Pawan
謝謝。這工作。 – PriyankaK