In the following SQL query why do they have an independent letter then period then the table name? I seemed to have missed something in the reading and cannot find it for the life of me
SELECT D.DNAME, E.ENAME
FROM DEPT D LEFT OUTER JOIN EMP E
ON D.DEPTNO = E.DEPTNO
ORDER BY D.DNAME;