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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T16:42:33+00:00 2026-06-07T16:42:33+00:00

Have have two tables in two different databases: Lets say i have Database users

  • 0

Have have two tables in two different databases:

Lets say i have Database users, and Database questions. If users has a table called USER_STATS that has

USER_ID,
EDU_INT1,
EDU_INT2,
EDU_INT3

, and questions has a table called questions that have a column called CLASS_SUBJECTS.

I want to run a query that will display * from QUESTIONS where CLASS_SUBJECTS equals either EDU_INT1,EDU_INT2,EDU_INT3 where the EDU_INT‘s are determined from a specific USER_ID

Any ideas? This is semi hard because of the two different databases

  • 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-06-07T16:42:34+00:00Added an answer on June 7, 2026 at 4:42 pm

    When querying across two databases, you just need to prepend the database name with a . before the table name as in database.table.column, and the database connection user must have access to both databases.

    Beyond that, this a regular JOIN, but with a more complex ON clause using 3 conditions OR‘d together:

    SELECT
      q.*
    FROM 
      questions.questions q
      JOIN users.USER_STATS u ON (
        q.CLASS_SUBJECTS = u.EDU_INT1
        OR q.CLASS_SUBJECTS = u.EDU_INT2
        OR q.CLASS_SUBJECTS = u.EDU_INT3
      )
    WHERE u.USER_ID = <some user id>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table that has two different many-to-many relations to two different tables.
I have two tables from two different databases. For example: Table: Articles1 - Database:
I have two tables in different databases on the same database server. Both the
I'm building an application that will have two different types of users, lets call
I have two different databases that contain two tables with the exact same design.
I have a need to sync auto_increment fields between two tables in different databases
I have two databases at two different places, both databases are same with table
i have two tables one is called addons and holds information about different addons,
I have two tables, both named as say, Employee in two different schema HR
I have two identical tables in two different databases with the same data but

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.