Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6144685
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:41:09+00:00 2026-05-23T18:41:09+00:00

I have a database where a user can search for addresses. However, some addresses

  • 0

I have a database where a user can search for addresses. However, some addresses in the databases are listed in a range. For example, 120-125 main st can be a record in the database. If the user searches for 123 Main St, is there a way to get the 120-125 record to show up? This needs to be rather dynamic to include all ranges so I’m not sure if the BETWEEN clause will work properly. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:41:11+00:00Added an answer on May 23, 2026 at 6:41 pm

    Save yourself many, many headaches and make dedicated fields for this kind of data. You might even create a function that parses addresses and fills these fields with the help of a trigger (after insert, update):

    create function rangeFrom( @address varchar(100) ) returns int as
    begin
      declare @pos int
    
      set @address = replace(@address, ' ', '') + '.'
    
      set @pos = patindex('%[0-9]%', @address)
      if @pos > 0
      begin
        set @address = right(@address, len(@address) - @pos + 1)
        set @pos = patindex('%[0-9][^0-9]%', @address)
        return left(@address, @pos)
      end
      return null
    end
    -- ------------------------------------------------------------
    create function rangeTo( @address varchar(100) ) returns int as
    begin
      declare @pos int
    
      set @address = replace(@address, ' ', '') + '.'
    
      set @pos = patindex('%[0-9]-[0-9]%', @address)
      if @pos > 0
      begin
        set @address = right(@address, len(@address) - @pos - 1)
        set @pos = patindex('%[0-9][^0-9]%', @address)
        return left(@address, @pos)
      end
      return null
    end
    

    Later, you can call them (e.g. in your trigger):

    select dbo.rangeFrom('120-125 main st')  -- returns 120
    select dbo.rangeTo('120-125 main st')    -- returns 125
    

    This way you have actual fields that you can use with the BETWEEN operator.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a form where the user can search the database, and the
i have a large user Database (13k+), and for some reason i need to
Can you recommend a full-text search engine? (Preferably open source) I have a database
I'm creating a dictionary database using php and MySQL. The user can search for
I'm working on an app where the user can search a database with several
I have UI where a user can search on optional parameters.I am writing a
I have search on my site where user can search in titles, description and
I have a Window where user can search for all the cars in the
I have a method where the user can search for a article number and
I have a main activity which user a viewpager and a database adapter to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.