Databases - Lab 3 - 1543123
Databases - Lab 3 - 1543123
Student ID : 1543123
Database Lab 3
Q : Create a query to display the last name and salary of employees earning more than $12,000.
Code : select LAST_NAME, SALARY
from employees
from employees
FROM employees
Q : Display the last name and job title of all employees who do not have a manager.
Code : select LAST_NAME, JOB_ID job_title
from employees
from employees
from employees
FROM orders