ALTER TABLE employee
ADD (emp_bldg REF building)
What doesREF keyword means in the above statement?
Options
- The column will contain only a reference to a building object
- The column will not contain a reference to a building object
- The column will contain the building object itself
- None of the above
CORRECT ANSWER : The column will contain only a reference to a building object
Write your comments