0
votes
How to get a distinct list of words used in all Field Records using MS SQL?
it'd be a messy stored procedure with a temp table and a SELECT DISTINCT at the end.
if you had the words already as records, you would use SELECT DISTINCT [WordsField] from [owner].[tablen …
