 |
 |
Archives of the TeradataForum
Message Posted: Thu, 12 Dec 2002 @ 18:26:09 GMT
| Subj: | | Re: Find line feeds in text fields |
| |
| From: | | Geoffrey Rommel |
| | Does anyone know a way to find a line feed in a text field in an SQL? | |
Try this:
select text_field
from xxx
where text_field like '250A25'xc;
| |