No, they cannot. In addition, they are deprecated in favor of types (n)varchar(max).
If you need to group them, change the data structure from (n)textto (n)varchar(max)or do the conversion in the group section
GROUP BY ProdID, CONVERT(nvarchar(max), ItemDes)
source
share