Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Returned limited characters from a memo field

Status
Not open for further replies.

CestusGW

Programmer
Jul 2, 2002
55
CA
I'm using a BASISplus 8.? Database which I believe is SQL2 compliant. I need a command that will limit the number of characters that get returned from a memo field to 255. I have tried the following command but havent gotten it to work:
convert(varchar(255), DBASE.MEMO_FIELD)

Thanks in advance
 
Have you tried left or possibly substring

as in select left(memo_field,255) from sometable

what happend with convert?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top