Retrieving data using the SQL select Statement
1. Determine the structure of DEPT table and its contents:
DESCRIBE DEPT;
2. Determine the structure of EMP table and its contents:
DESCRIBE EMP;
3. Display the Ename and Deptno from Emp table whose Empno is 7788:
SELECT Ename, Deptno FROM Emp WHERE Empno = 7788;