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

  • Home
  • SEARCH
  • 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 740151
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T08:28:57+00:00 2026-05-14T08:28:57+00:00

in a query, is there any performance hit by doing a where clause like

  • 0

in a query, is there any performance hit by doing a where clause like so

select bunchofstuff from sometable where column like '%'

vs

select bunchofstuff from sometable

Building some dynamic queries, just curious. Thanks.

  • 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-14T08:28:57+00:00Added an answer on May 14, 2026 at 8:28 am

    On SQL 2005, SP3 running the following

    set statistics io on
    select * from sys.columns where name like '%'
    set statistics io off
    
    set statistics io on
    select * from sys.columns
    set statistics io off
    

    suggests that the cost will be almost identical, since both return the same result set:

    (1134 row(s) affected)
    Table 'syscolpars'. Scan count 1, logical reads 50, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
    

    Switching on the query plans and/or statistics IO shows that select * from sys.columns where name like '%' is marginally more expensive (51% of query cost vs. 49% for select * from sys.columns), since it appears that the filter is parsed and applied even though it has no effect.

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

Sidebar

Related Questions

All, Considering my earlier query Stackoverflow-Post , here is what I am currently doing.
I'm using .NET 4 and the Entity Framework to construct a simple query. Here's
I'm building an ASP.NET MVC site where I plan to use Lucene.Net. I've envisioned
We have a query for about 40 data fields related to customers. The query
Imagine 2 tables in a relational database, e.g. Person and Billing. There is a
quick qestion today... what is more efficient and is there a big diffrence in
I'm currently developing the foundation of a an application, and looking for ways to
I have created domain model and define entities, value objects, Services and so on.
I have a view defined in SQL server 2008 that joins 4 tables together.
I've got a dataset with over 100k rows, so it's not tiny, but not

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.