我想编写一个CLR过程,它接受一个文本并返回一个包含该文本中所有单词的表。但我不知道如何返回一张table。你能告诉我吗?[Microsoft.SqlServer.Server.SqlFunction]publicstaticWhatTypeShouldIWriteHereFunction1(SqlStringstr){string[]words=Regex.Split(str,@"\W+").Distinct().ToArray();//howtoreturnatablewithonecolumnofwords?}感谢您的帮助。更新:我需要为sql-2005做这件事