Results with 100 characters or less

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • clocola
    New Member
    • Mar 2010
    • 1

    Results with 100 characters or less

    Hi

    I am writing aSQL query in Access. I want to return results in a text field which are 100 characters long or less.

    Thanks
  • Stewart Ross
    Recognized Expert Moderator Specialist
    • Feb 2008
    • 2545

    #2
    Hi Clocola. We can't answer your question as you have not provided us with information about what you really want to do. Please help us to help you by asking your question in line with our posting guidelines at the top of the page.

    -Stewart

    Comment

    • NeoPa
      Recognized Expert Moderator MVP
      • Oct 2006
      • 32634

      #3
      If you want to select only those records where a particular field contains entries which don't exceed 100 characters then :
      Code:
      SELECT ...
             [TextField],
             ...
      FROM   [YourTable]
      WHERE  Len([TextField])<=100
      NB. Don't ignore Stewart's point. Just because it is possible to provide help when a question is written poorly, doesn't mean we appreciate your not making any effort to present your question properly.

      Comment

      Working...