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!

Text length query

Status
Not open for further replies.

riluve

Technical User
Mar 11, 2005
78
US
I am using MYSQL and I need to run a query on a table where I can serch for records only with a text feild of a specified length (number of characters) e.g.

SELECT *
FROM table
WHERE length('text_field') > x

Anyone know the proper syntax?
 
The ANSI function is CHAR_LENGTH:
SELECT *
FROM table
WHERE CHAR_LENGTH(NameOfColumn) > x

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top