Default password has not been changed

The admin password is set to its default value, it is recommended that you change it immediately!

You can change this password by logging in, navigating to My -> Account -> Password.

Current admin login:
   Username:"[email protected]"
   Password:"2Tight2Wiki@"

Top


Overview
The top keywork limits the number of results that are returned by a query.

Notes on ordering

  • Due to threading, the TOP limiter will not necessarily return the first documents in a namespace.
  • When using the TOP limiter with ORDER BY, the full result set will be ordered before the limiter is applied.

Example
round-pushpin Returns the first 10 documents that are gathered by the query.
SELECT TOP 10 * FROM WordList:Word

Example
round-pushpin Orders the Word by text and then returns the first 10 documents.
SELECT TOP 10 * FROM WordList:Word ORDER BY Text


Related