Given the following DDL statement: CREATE TABLE sales (item CHAR(20)); If a DBA wishes to increase the size of the ITEM column, which SQL statement needs to be used? A. ALTER TABLE sales ADD COLUMN item CHAR(40); B. ALTER TABLE…