From the following tables, write a SQL query to find the full name (first and last name) of the employee with ID and name of the country presently where he/she is working
- برمجة سي كيو ال sql
- 2021-09-01
- mhanasmh00489829403
الأجوبة
SELECT employee_id, job_title, end_date-start_date DAYS
FROM job_history
NATURAL JOIN jobs
WHERE department_id=80;
Sample Output:
employee_id job_title days 176 Sales Manager 364 176 Sales Representative 282
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال