Hi all,
I have the following problem regarding a SQL query:
I have a field named "Comment" in my table, this field is a varchar(1000) type field. I'm using MSSQL2000.
If I run the following query:
select len(comment) from myTable where id='x'
it returns that the data is 800 characters long
but the problem is that if I run:
select comment from myTable where id='x'
it only returns the first 255 characters
Does anyone knows how to solve this limitation?
thanks for your help