Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
305 views
in Technique[技术] by (71.8m points)

mysql - SQL: Display results from two tables

I have two tables:

Jobs

job_title         min_salary  job_id  max_salary 
Public Accountant 4322        1       8777
Assistant         4321        2       9877
President         5432        3       6766

Employees

emp_id  first_name  last_name  job_id  hire_date
100      Abc        Def        1       2020-12-09
101      Xyz        Efg        2       2020-10-05
102      Hjk        Lmn        3       2019-09-06

job_id is common in both tables. I want to display the first and last name and date of joining of the employees who are either Assistant or President...

I am trying to get the output using this:

SELECT first_name
     , last_name
     , hire_date 
  FROM employees
 UNION 
     ( SELECT job_title 
         FROM jobs 
        WHERE job_title = 'Assistant' 
           or job_title = 'President');

But I am doing something wrong when selecting the required columns...

Thanks

question from:https://stackoverflow.com/questions/65641771/sql-display-results-from-two-tables

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should to use JOIN:

SELECT first_name, last_name, hire_date 
FROM Employees
JOIN Jobs ON Employees.job_id = Jobs.job_id
WHERE job_title IN ('Assistant', 'President');

Here live SQL fiddle


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...