Examine this code:

Examine this query:
SELECT ename, d.dname, job, sal, comm FROM emp e, dept d WHERE d.deptno = e.deptno; Which statement is correct regarding the execution of this SQL query?
Select an option, then click Submit answer.
-
○
The query will only fetch records pertaining to department 30 with SAL and COMM displaying the actual data from the table.
-
○
The query will fetch records from all departments with SAL and COMM values displayed as NULL for
all records other than department 30.
-
○
The query will only fetch records pertaining to department 30 with SAL and COMM data replaced by "xxxxx".
-
○
The query will only fetch records pertaining to department 30 with SAL and COMM values displayed as NULL.
