Question
how can I get this query to work?
HI
SELECT TOP 200 [word] ,COUNT(word) AS count
FROM [COMMENT_WORDS]
where word NOT in (SELECT wordText FROM word)
GROUP BY word
ORDER BY COUNT desc
gives me this error:
Msg 468, Level 16, State 9, Line 1
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
please help
