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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:17:28+00:00 2026-05-23T03:17:28+00:00

Here is the simple sql query that will return all tables that have the

  • 0

Here is the simple sql query that will return all tables that have the following column name, ‘userid’ or ‘user_id’.

SELECT  t.name 
FROM sys.tables t
INNER JOIN sys.columns c ON t.object_id = c.object_id
WHERE c.name LIKE 'userid' OR c.name LIKE 'user_id'
ORDER BY name

However, what I would like to do here is to get all the tables that don’t contain ‘userid’ column and ‘user_id’ column. How should I query this?

P.S. Using NOT LIKE will still bring back the table that contains ‘userid’ or ‘user_id’ column, if the table has some other different columns.

Thanks very much.

  • 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-23T03:17:28+00:00Added an answer on May 23, 2026 at 3:17 am

    You need “tables where no column userid/user_id exists”

    SELECT
        t.name 
    FROM 
        sys.tables t
    WHERE
        NOT EXISTS (SELECT *
              FROM sys.columns c
              WHERE t.object_id = c.object_id AND c.name IN ('userid', 'user_id'))
    ORDER BY
        t.name
    

    Edit:

    You can also use your original query in an EXCEPT clause

    SELECT t.name FROM sys.tables t
    EXCEPT
    SELECT t.name 
    FROM sys.tables t
    INNER JOIN sys.columns c ON t.object_id = c.object_id
    WHERE c.name IN  ('userid', 'user_id')
    ORDER BY t.name
    

    These two queries should give identical plans and performance

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

Sidebar

Related Questions

I'm trying to construct a query that will include a column indicating whether or
I have a view defined in SQL server 2008 that joins 4 tables together.
I am trying to develop a T-SQL query which will do the following: ROUND(100
I have a SQL table that will be be joined with two subtables. One
OK, here's yet another sql query that's giving me headaches. Case: I'm listing a
Here's a simple (hopefully) L10N question: Do all locales want this format: Sunday, Nov
Say I have 5 tables, tblBlogs tblBlogPosts tblBlogPostComment tblUser tblBlogMember BlogId BlogPostsId BlogPostCommentId UserId
I hope I am not missing something very simple here. I have done a
Consider the following table with a constraint that's a bit daft but simple enough
i ave been having trouble with a simple select sql query. using php PDO.

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.