 |
Limitations of SQL_LONGVARCHAR:
- The LIKE predicate operates on the first 65500 characters of the column data.
- All other predicates operate on the first 256 characters of the column data.
- SELECT statements with GROUP BY, DISTINCT and ORDER BY return all of the data but only order on the first 256 characters of the column data.
|