"SequoiaDB Giant Sequoia Database" find() Overview 1

name

find-Query records.

grammar

db.collectionspace.collection.find([cond],[sel])

db.collectionspace.collection.find([cond],[sel]).hint([hint])

db.collectionspace.collection.find([cond],[sel]).skip([skipNum]).limit([retNum]).sort([sort])

db.collectionspace.collection.find([cond],[sel])[.hint([hint])][.skip([skipNum])][.limit([retNum])][.sort([sort])]

db.collectionspace.collection.find([SdbQueryOption])

category

Collection

description

Select the records of the collection and return the records through the cursor. In SequoiaDB, the cursor is a pointer that points to a query result set, and the client can traverse the search results through the cursor.

Click on Jushan Database Documentation Center for more information

 

Guess you like

Origin blog.csdn.net/weixin_45890253/article/details/112936062