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 6136989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:40:18+00:00 2026-05-23T17:40:18+00:00

I need to improve the search on a website which has a search box

  • 0

I need to improve the search on a website which has a search box that only searches for the exact same characters. If I type in hyperlink it will return everything starting with hyperlink but not anything such as contenthyperlink, _hyperlink, etc. Here is my sql query –

    select          O_ObjectID, 
                rtrim(O_Name) as O_Name
    from            A_Object
    where           O_Name like @NamePrefix + '%'
    order by        O_Name
  • 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-23T17:40:19+00:00Added an answer on May 23, 2026 at 5:40 pm

    Strictly speaking your query is correct, however what you’re really looking for is “words starting with ‘hyperlink'” which means there will be a space character or it will be the start of the text field.

    select          O_ObjectID, 
                rtrim(O_Name) as O_Name
    from            A_Object
    where           O_Name like @NamePrefix + '%' OR O_Name like '% ' + @NamePrefix + '%'
    order by        O_Name
    

    note the added space character in '% ' + @NamePrefix + '%'

    Your other option would be to use full text search which would mean your query would look like this:

    select          O_ObjectID, 
                rtrim(O_Name) as O_Name
    from            A_Object
    where           CONTAINS(O_Name, '"'+ @NamePrefix + '*"')
    order by        O_Name
    

    and performance on this will be significantly faster as it will be indexed at a word level.

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

Sidebar

Related Questions

I have recently started to feel that I need to greatly improve my C++
We need to design a system which allows users to search by different keywords
I have created a complex sql server 2008/coldfusion search page, that searches thru a
Features Only numbers A unique dot (.) But...i need improve to allow user digits
I have a website which has thousands of (ever increasing) resources in it. I
I need to write a stored procedure that will search a table based on
I need to improve the response time for a Grails application, so I need
I need to improve on a regular expression I'm using. Currently, here it is:
I need to implement threading to improve load time in a compact framework app.
I need to get the URL search paramentes in an object, for eg; http://example.com/?a=x&b=y&d#pqr

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.