ISNULL and NULLIF are not supported in SQL Server CE 3.5, use
COALESCE instead.
Code:SELECT COALESCE(USER_CUSTOM_NAME, '') + ' ' + COALESCE(USER_FIRSTNAME, '') + ' ' + COALESCE(USER_LASTNAME, '') + ' (' + USER_SYSTEM_NAME + ')' FROM USERS
With multiple arguments, COALESCE returns the first non-null expression among its arguments. For example,
Code:SELECT COALESCE(USER_CUSTOM_NAME, USER_FIRSTNAME, USER_LASTNAME, '') + ' (' + USER_SYSTEM_NAME + ')' FROM USERS