The EMPLOYEES table has these columns:<br /> LAST NAME VARCHAR2(35)<br /> SALARY NUMBER(8,2)<br /> HIRE_DATE DATE<br /> Management wants to add a default value to the SALARY column. You plan to alter the table by using this SQL statement:<br /> ALTER TABLE EMPLOYEES<br /> MODIFY ( SALARY DEFAULT 5000);<br /> What is true about your ALTER statement?()<p> The EMPLOYEES table has these columns:<br /> LAST NAME VARCHAR2(35)<br /> SALARY NUMBER(8,2)<br /> HIRE_DATE DATE<br /> Management wants to add a default value to the SALARY column. You plan to alter the table by using this SQL statement:<br /> ALTER TABLE EMPLOYEES<br /> MODIFY ( SALARY DEFAULT 5000);<br /> What is true about your ALTER statement?()</p>
A、A. Column definitions cannot be altered to add DEFAULT values.
B、B. A change to the DEFAULT value affects only subsequent insertions to the table.
C、C. Column definitions cannot be altered at add DEFAULT values for columns with a NUMBER data type.
D、D. All the rows that have a NULL value for the SALARY column will be updated with the value 5000.