Tagged Questions
2
votes
3answers
809 views
Simplest way to print out the contents of a text field in SQL Server
I need to output the contents of a text field using MS Query Analyzer. I have tried this:
select top 1 text from myTable
(where text is a text field)
and
DECLARE @data VarChar(8000)
select top 1 ...