PDF(US Ltr) - 1.2Mb
PDF(A4) - 1.2Mb
Table.select()
和 collection.find()
使用不同的方法对结果进行排序。 Table.select()
遵循 SQL 语言命名并调用排序方法 orderBy()
。 Collection.find()
则不然。使用 sort()
方法对 Collection.find()
返回的结果进行排序。在这里,与 SQL 标准的接近性被认为比 API 的统一性更重要。
EBNF 中显示的此函数的语法为
TableSelectFunction
::= '.select(' ProjectedSearchExprStrList? ')' ( '.where(' SearchConditionStr ')' )?
( '.groupBy(' SearchExprStrList ')' )? ( '.having(' SearchConditionStr ')' )?
( '.orderBy(' SortExprStrList ')' )? ( '.limit(' NumberOfRows ')' ( '.offset(' NumberOfRows ')' )? )?
( '.lockExclusive(' LockContention ')' | '.lockShared(' LockContention ')' )?
( '.bind(' ( PlaceholderValues ) ')' )*
( '.execute()' )?
EBNF 中显示的此函数的语法为
TableInsertFunction
::= '.insert(' ( TableFields )? ')'
( '.values(' ExprOrLiteral (',' ExprOrLiteral)* ')' )+
( '.execute()' )?
EBNF 中显示的此函数的语法为
TableUpdateFunction
::= '.update()'
( '.set(' TableField ',' ExprOrLiteral ')' )+ '.where(' SearchConditionStr ')'
( '.orderBy(' SortExprStrList ')' )? ( '.limit(' NumberOfRows ')' )?
( '.bind(' ( PlaceholderValues ) ')' )*
( '.execute()' )?