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@"
IIF
Overview
The IIF function is a shorthand for "Immediate If." It returns one of two specified values depending on whether a given condition is true or false. It's employed within queries to conditionally produce a value based on a logical test.
Prototype
Example
SELECT
English,
IIF(Equals(English, 'cats'), 'YES!', 'no...') as 'IsCats?'
FROM
WordList:FlatTranslate
WHERE
English LIKE '%cats'See also
Related