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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T08:32:54+00:00 2026-05-14T08:32:54+00:00

I am a MySQL newbie, so sorry if this is a dumb question.. These

  • 0

I am a MySQL newbie, so sorry if this is a dumb question..

These are my tables.

student table:
SID (primary)
student_name
advisor (foreign key to faculty.facultyID)
requested_advisor (foreign key to faculty.facultyID)

faculty table:
facultyID (primary key)
advisor_name

I want to query a table that shows everything in the student table, but I want advisor and requested_advisor to show up as names, not the ID numbers.

so like it displays like this on the webpage:
Student Name: Jane Smith
SID: 860123456
Current Advisor: John Smith
Requested advisor: James Smith

not like this

Student Name: Jane Smith
SID: 860123456
Current Advisor: 1
Requested advisor: 2

SELECT student.student_name, SID, student_email, faculty.advisor_name
FROM student
INNER JOIN faculty ON student.advisor = faculty.facultyID;

this comes out close, but I don’t know how to get the requested_advisor to show up as a name.

  • 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-14T08:32:54+00:00Added an answer on May 14, 2026 at 8:32 am

    Join with faculty twice using different aliases,

    SELECT 
    student.student_name, 
    SID, 
    student_email, 
    fac1.advisor_name AS 'advisor', 
    fac2.advisor_name AS 'requested advisor'
    FROM student
    INNER JOIN faculty fac1 ON student.advisor = fac1.facultyID
    INNER JOIN faculty fac2 ON student.requested_advisor = fac2.facultyID;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry, newbie question I know, however I've currently got mySQL results only showing when
Please excuse my newbie Question. I'm tryin to display data from a mysql table
Sorry if the question is stupid but I'm newbie to MySQL and got stuck
currently i'm studying MySQL, sorry for my newbie question. Here my question I have
I have this situation: MySQL - Newbie question: Which are the PK and the
I'm sorry if this is a newbie question, but it seems I don't get
I'm sorry for the question but I am terribly a newbie in using MySQL
As I am a MySQL newbie. What does PARTITION mean in this MySQL statement?
Newbie question about PostgreSQL. I'm migrating a MySQL/PHP app I've created, hosted on a
forgive my newbie question, but why finding by '2' or '2' in Mysql returns

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.