bpowers
SSCertifiable
Points: 5483
More actions
March 16, 2009 at 9:32 am
#200974
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?
steveb.
SSC-Forever
Points: 46733
March 16, 2009 at 9:35 am
#960359
Select * from YourTable
Where len(Description) > 35
March 16, 2009 at 9:38 am
#960363
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