Search by Number of Characters

  • I have a "Description" column in one of my tables. I want to find all descriptions that have more than 35 characters. What would the code look like to accomplish this?

  • Select * from YourTable

    Where len(Description) > 35

  • Perfect! Thank you very much.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply