Which department do you work in on board?()
A、Deck department.
B、Engine department.
C、Service department.
D、Sorry.
A、Deck department.
B、Engine department.
C、Service department.
D、Sorry.
A、Users in both departments can access their files from the network. B、Users in the accounting department can view the legal department’s documents. C、Users in the legal department cannot view the accounting department’s documents. D、Company managers can access and modify both departments’ files.
A、A. SELECT last_name, department_name FROM employees , departments(+); B、B. SELECT last_name, department_name FROM employees JOIN departments(+); C、C. SELECT last_name, department_name ON (e. department_ id = d. departments_id); FROM employees(+) e JOIN departments d D、D. SELECT last_name, department_name FROM employees e RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id); E、E. SELECT last_name, department_name FROM employees(+) , departments ON (e. department _ id = d. department _id); F、F. SELECT last_name, department_name FROM employees e LEFT OUTER JOIN departments d ON (e. department _ id = d. department _id);
A、A.to find the tax percentage for each of the employees B、B.to list the name, job_id, and manager name for all the employees C、C.to find the name, salary, and the department name of employees who are not working with Smith D、D.to find the number of employees working for the Administrative department and earning less than 4000 E、E.to display name, salary, manager ID, and department name of all the employees, even if the employees do not have a department ID assigned
A、A.to find the tax percentage for each of the employees B、B.to list the name, job_id, and manager name for all the employees C、C.to find the name, salary, and the department name of employees who are not working with Smith D、D.to find the number of employees working for the Administrative department and earning less than 4000 E、E.to display name, salary, manager ID, and department name of all the employees, even if the employees do not have a department ID assigned
A、SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d RIGHT OUTER JOIN employees e ON d.department_id = e.department_id RIGHT OUTER JOIN locations l ON d.location_id = l.location_id; B、SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d FULL OUTER JOIN employees e ON d.department_id = e.department_id FULL OUTER JOIN locations l ON d.location_id = l.location_id; C、SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d LEFT OUTER JOIN employees e ON d.department_id = e.department_id LEFT OUTER JOIN locations l ON d.location_id = l.location_id; D、SELECT last_name, department_id, department_name, city FROM departments d NATURAL JOIN employees e NATURAL JOIN locations l;
A、To find the tax percentage for each of the employees. B、To list the name, job id, and manager name for all the employees. C、To find the name, salary, and department name of employees who are not working with Smith. D、To find the number of employees working for the Administrative department and earning less then 4000. E、To display name, salary, manager ID, and department name of all the employees, even if the employees do not have a department ID assigned.
A、A.SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d RIGHT OUTER JOIN employees e ON d.department_id = e.department_id RIGHT OUTER JOIN locations l ON d.location_id = l.location_id; B、B.SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d FULL OUTER JOIN employees e ON d.department_id = e.department_id FULL OUTER JOIN locations l ON d.location_id = l.location_id; C、C.SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d LEFT OUTER JOIN employees e ON d.department_id = e.department_id LEFT OUTER JOIN locations l ON d.location_id = l.location_id; D、D.SELECT last_name, department_id, department_name, city FROM departments d NATURAL JOIN employees e NATURAL JOIN locations l;
A、A.SELECT e.last_name, d. department_name, d.location_id FROM employees e NATURAL JOIN departments D USING department_id ; B、B.SELECT last_name, department_name, location_id FROM employees NATURAL JOIN departments WHERE e.department_id =d.department_id; C、C.SELECT e.last_name, d.department_name, d.location_id FROM employees e NATURAL JOIN departments d; D、D.SELECT e.last_name, d.department_name, d.location_id FROM employees e JOIN departments d USING (department_id );
A、SELECT last_name, department_name FROM employees NATURAL JOIN departments; B、SELECT last_name, department_name FROM employees JOIN departments ; C、SELECT last_name, department_name FROM employees e JOIN departments d ON (e.department_id = d.department_id); D、SELECT last_name, department_name FROM employees e RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id); E、SELECT last_name, department_name FROM employees FULL JOIN departments ON (e.department_id = d.department_id); F、SELECT last_name, department_name FROM employees e LEFT OUTER JOIN departments d ON (e.department_id = d.department_id);