You run the following SQL statement: SELECT a.lname, a.location, b.dname, b.hiredate FROM emp a, emp b WHERE a.empid=b.empid; Which options are correct? (Choose all that apply)
This is an equijoin.
This is a self join.
Line 2 will return an error.
Line 3 will return an error.
The statement will execute successfully.