You need to create a temporary table emp_dept based on the employees and departments tables. The SQL query that can be used is
1)CREATE TEMP TABLE emp_dept as SELECT emp_id emp_Name dept_name
FROM employees INNER JOIN departments USING (department_id).
2)CREATE TABLE emp_dept as SELECT emp_id emp_Name dept_name
FROM employees INNER JOIN departments USING (department_id).
3)CREATE VIEW emp_dept as SELECT emp_id, emp_Name dept_name
FROM employees INNER JOIN departments USING (department_id).
none of the options
Answers
Answered by
1
Answer:
THE ANSWER IS IN THE ATTACHMENT
MARK ME AS THE BRAINLIEST ❤
Attachments:
Answered by
0
Answer:
CREATE VIEW emp_dept as SELECT emp_id, emp_Name dept_name
FROM employees INNER JOIN departments USING (department_id)
Explanation:
Similar questions
English,
2 months ago
CBSE BOARD XII,
5 months ago
Science,
5 months ago
English,
11 months ago
Math,
11 months ago