A.COMMIT B.MERGE C.UPDATE D.DELETE E.CREATE F.DROP...
A.Both tables have NULL values. B.You want all unmatched data from one table. C.You want all matched data from both tables. D.You want all unmatched data from both tables. E.One of the tables has more data than the other. F.You want all matched and unmatched data from only one table.
A.ALTER TABLE commercials MODIFY (description CHAR2(1000)); B.ALTER TABLE commercials CHANGE (description CHAR2(1000)); C.ALTER TABLE commercials CHANGE (description VARCHAR2(1000)); D.ALTER TABLE commercials MODIFY (description VARCHAR2(1000)); E.You cannot increase the size of a column if the table has rows.