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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:07:13+00:00 2026-05-12T14:07:13+00:00

Alright SQL Server Gurus, fire up your analyzers. I have a list of titles

  • 0

Alright SQL Server Gurus, fire up your analyzers.

  • I have a list of titles in application memory (250 or so).
  • I have a database table “books” with greater than a million records, one of the columns of the table is “title” and is of type nvarchar.
  • the “books” table has another column called “ISBN”
  • books.title is not a primary key, is not unique, but is indexed.

So I’d like to know which is more efficient:

WITH titles AS (select 'Catcher and the Rye' as Title
                union all 'Harry Potter ...'
                ...
                union all 'The World Is Flat')

select ISBN from books, titles where books.title = titles.title;

OR:

select ISBN from books where title in ('Catcher and the Rye','Harry Potter',...,'The World Is Flat');

OR:

???
  • 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-12T14:07:14+00:00Added an answer on May 12, 2026 at 2:07 pm

    I hope you have ISBN includes on the title index to avoid key lookups

    CREATE INDEX IX_Titles ON dbo.Books (Title) INCLUDE (ISBN)
    

    Now, the IN vs JOIN vs EXISTs is a common question here. The CTE is irrelevant except for readability. Personally, I’d use exists because you’ll get duplicates with JOIN for books with the same title, which folk often forget.

    ;WITH titles AS (select 'Catcher and the Rye' as Title
                union all 'Harry Potter ...'
                ...
                union all 'The World Is Flat')
    SELECT
        ISBN 
    FROM
        books
    WHERE
        EXISTS (SELECT * --or null or = all the same
            FROM
                titles 
            WHERE
                titles .Title = books.Title)
    

    However, one construct I’d consider is this to force “intermediate materialisation” on my list of search titles. The also applies to an exists or CTE solution too. This is likely to help the optimiser considerably.

    Edit: a temp table is a better option, really, as Steve mentioned in his comment

    SELECT
        ISBN 
    FROM
        (
        SELECT TOP 2000000000
            Title
        FROM
            (select 'Catcher and the Rye' as Title
                    union all 'Harry Potter ...'
                    ...
                    union all 'The World Is Flat'
            ) foo
        ORDER BY
           Title
        ) bar
        JOIN
        books On bar.Title = books.Title
    
    
    SELECT
        ISBN 
    FROM
        books
    WHERE
        EXISTS (SELECT * --or null or = all the same
            FROM
                (
                SELECT TOP 2000000000
                    Title
                FROM
                    (select 'Catcher and the Rye' as Title
                            union all 'Harry Potter ...'
                            ...
                            union all 'The World Is Flat'
                    ) foo
                ORDER BY
                   Title
                ) bar
            WHERE
                bar.Title = books.Title)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Alright so a quick SQL question here(using sql-server-2008). I have a mapping table names
Alright, so I have a table that I need to store in a database.
I have a standalone application that needs to connect to a Sybase database via
Alright, here's an odd one from an MS Access database I'm running. I have
Alright here's the situation, I have an application written in the Zend_Framework, that is
Alright, take this for example: $array['key'] = 'value'; $SQL = SELECT column FROM table
Alright, we have two database servers, one is owned by us, one owned by
Alright I have a table where I need to get the relevant date from
This is my first time designing tables in a sql database and I have
Alright, I have a table of tasks this table has a foreign key which

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.