programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

How to get the length of a string in a column mysql

Average: 5 (1 vote)

using length([column name])

using length([column name]) , we can get the length of string

eg: get the students whose description length is more than 50

SELECT * from students where length(description)>50