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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:13:58+00:00 2026-05-10T20:13:58+00:00

I would like to know if it is possible, to select certain columns from

  • 0

I would like to know if it is possible, to select certain columns from one table, and another column from a second table, which would relate to a non imported column in the first table. I have to obtain this data from access, and do not know if this is possible with Access, or SQL in general.

  • 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. 2026-05-10T20:13:58+00:00Added an answer on May 10, 2026 at 8:13 pm

    Assuming the following table structure:

    CREATE TABLE tbl_1 (     pk_1 int,     field_1 varchar(25),     field_2 varchar(25) );  CREATE TABLE tbl_2 (     pk_2 int,     fk_1 int,     field_3 varchar(25),     field_4 varchar(25) ); 

    You could use the following:

    SELECT t1.field_1, t2.field_3 FROM tbl_1 t1 INNER JOIN tbl_2 t2 ON t1.pk_1 = t2.fk_1 WHERE t2.field_3 = 'Some String' 

    In regard to Bill’s post, there are two ways to create JOIN’s within SQL queries:

    • Implicit – The join is created using the WHERE clause of the query with multiple tables being specified in the FROM clause

    • Explicit – The join is created using the appropriate type of JOIN clause (INNER, LEFT, RIGHT, FULL)

    It is always recommended that you use the explicit JOIN syntax as implicit joins can present problems once the query becomes more complex.

    For example, if you later add an explicit join to a query that already uses an implicit join with multiple tables referenced in the FROM clause, the first table referenced in the FROM clause will not be visible to the explicitly joined table.

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

Sidebar

Related Questions

I would like to know if it is possible, To extract the userid from
I would like to know if it is possible to determine if a function
I would like to know whether it is possible to force LWP::UserAgent to accept
I would like to know if it is possible to copy/move files to a
I would like to know if it's possible to call a inline function with
I would like to know which dependency described in my pom.xml brings a transitive
I would like to know if it's possible to order by a comma-delimited set
I would like to know if it's possible to find a value in a
I would like to know if below my need is possible in clearcase :
I would like to know if it is possible to simplify the following process:

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.