Closed daryllabar closed 2 months ago
Trying to run this query:
SELECT DISTINCT [From] FROM email
Getting this error
Msg 10337, Level 16, State 1, Line 9 An unexpected error occurred. System.ArgumentNullException: Key cannot be null. Parameter name: key See the Execution Plan tab for details of where this error occurred
Interesting - can you please try this as a workaround for now?
SELECT DISTINCT [From] + '' FROM email
That appears to work.
Trying to run this query:
Getting this error