Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL table?

Examine the description of the EMP_DETAILS table given below:
Exhibit:


Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL table? (Choose two.)
A. An EMP_IMAGE column can be included in the GROUP BY clause
B. You cannot add a new column to the table with LONG as the data type
C. An EMP_IMAGE column cannot be included in the ORDER BY clause
D. You can alter the table to include the NOT NULL constraint on the EMP_IMAGE column

Download Printable PDF. VALID exam to help you PASS.

One thought on “Which two statements are true regarding SQL statements that can be executed on the EMP_DETAIL table?

  1. D is correct to

    CREATE TABLE emp_details (
    emp_id NUMBER NOT NULL
    ,emp_name VARCHAR2(40) NOT NULL
    ,emp_image LONG
    );

    ALTER TABLE emp_details MODIFY emp_image CONSTRAINT emp_details_emp_image_nn NOT NULL;

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.