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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:49:50+00:00 2026-05-26T21:49:50+00:00

I have been profiling the SQL query NHibernate generates for the following snippets below.

  • 0

I have been profiling the SQL query NHibernate generates for the following snippets below. I would think code #1 would be more efficient, however, the generated SQL gives me doubts.

1) bool any = Query.Where(user => user.Id == 1).Any(); generates:

select 
    *
from 
    users
where exists
        (select id
         from users
         where id = 1)
and rownum <= 1

2) bool any = Query.Where(user => user.Id == 1).Count() > 1; generates:

select 
    count(*)
from 
    users 
where 
    id = 1

Which is more efficient? In the future, how would I determine this? I am using Oracle.

  • 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-26T21:49:51+00:00Added an answer on May 26, 2026 at 9:49 pm

    Assuming that ID is the primary key (or at least unique), the second query may be slightly more efficient because it only needs to read the index on the ID column of the USERS table. The first query will need to the same work to read the index but then will have to fetch the corresponding data from the table. If you look at the two query plans, you should see that the first query does an extra read of the table.

    On the other hand, if you were searching on a column that did not have a unique index on it, the second query be less efficient because it potentially has to read multiple blocks from the index or to do a full scan of the table to get a count while the first query can stop processing once it finds the first matching row.

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

Sidebar

Related Questions

I have been profiling my web app's connection to the sql server for the
I have been profiling a C code and to do so I compiled with
Our organisation uses inline sql. We have been tasked with providing a suitable data
for a while I have been using gprof to profile my C code but
I have always been a good boy when writing my classes, prefixing all member
I've been thinking of ways of providing syntactic sugar for a framework I have
Have been looking at the MVC storefront and see that IQueryable is returned from
Have been studying the file system related classes of Adobe AIR 1.5, but so
Have been struggling with Javascript closure for a while trying to wrap brain around
We have been using CruiseControl for quite a while with NUnit and NAnt. For

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.