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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:49:37+00:00 2026-05-31T19:49:37+00:00

I would like to think of myself as a decent SQL Server programmer but

  • 0

I would like to think of myself as a decent SQL Server programmer but this query always stumps me. I’m sure there is a much better way to query this.

SELECT DISTINCT
    database_name,
    CASE 
        WHEN ((SELECT MAX(1) FROM dbo.column_list WHERE column_list IS NOT NULL and database_id = d.database_id) = 1 
                OR (SELECT MAX(1) FROM dbo.table_list WHERE table_list IS NOT NULL and database_id = d.database_id) = 1) 
            THEN 1 
            ELSE 0 
    END AS 'has_definition'
FROM dbo.database_list d;

I have 3 tables database_list, table_list and a column_list. I’m trying to query for a given database in the database list to see if any of the underlying table or column has definitions in them. This query works now and returns a unique list of databases and a has_definition but this seems wrong to me.

Any thoughts would be helpful.

  • 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-31T19:49:39+00:00Added an answer on May 31, 2026 at 7:49 pm

    You might try this version instead:

    SELECT database_name,
        CASE WHEN EXISTS 
        (
          SELECT 1 FROM dbo.column_list 
             WHERE column_list IS NOT NULL and database_id = d.database_id
          UNION ALL
          SELECT 1 FROM dbo.table_list 
             WHERE table_list IS NOT NULL and database_id = d.database_id
        ) 
                THEN 1 
                ELSE 0 
        END AS [has_definition]
    FROM dbo.database_list AS d;
    

    And maybe compare it to this:

    SELECT database_name,
        CASE WHEN EXISTS 
        (
          SELECT 1 FROM dbo.column_list 
             WHERE column_list IS NOT NULL and database_id = d.database_id
        ) 
        OR EXISTS
        (
          SELECT 1 FROM dbo.table_list 
             WHERE table_list IS NOT NULL and database_id = d.database_id
        ) 
                THEN 1 
                ELSE 0 
        END AS [has_definition]
    FROM dbo.database_list AS d;
    

    I don’t think you’ll need the distinct unless you really have duplicates in dbo.database_list.

    Also please don’t use 'single quotes' for aliases – this syntax is deprecated, you should use [square brackets] instead.

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

Sidebar

Related Questions

I would like to do the following but I don't think this will work:
This is something that I think would be very useful. Basically, I'd like there
I would like to think of myself as a somewhat experienced asp.net/c# programmer. I
I think I know the answer, but I would like to bounce around some
I would like to know what the members of this great community think of
I would like to think that some of the software I'm writing today will
I would like to create a String.replaceAll() method in JavaScript and think using a
I would like to create an SSL connection for generic TCP communication. I think
I would like to know if ParseExact is faster than Parse. I think that
My issue is quite simple I think : I would like to be able

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.