Biology Forums - Study Force

Other Fields Homework Help Management Topic started by: jaycezhao on Jan 31, 2018



Title: Which of the following commands will add a new column named FIRST ORDER DATE to the CUSTOMERS table ...
Post by: jaycezhao on Jan 31, 2018
Which of the following commands will add a new column named FIRST ORDER DATE to the CUSTOMERS table to store the date that the customer first placed an order with the company?
 a. CREATE COLUMN firstorderdate, DATE TO customers;
  b. ALTER TABLE customers ADD COLUMN firstorderdate DATE;
   c. ALTER TABLE customers ADD firstorderdate DATE;
  d. ALTER TABLE customers ADD (firstorderdate DATE);


Title: Which of the following commands will add a new column named FIRST ORDER DATE to the CUSTOMERS table ...
Post by: casssm on Jan 31, 2018
d


Title: Which of the following commands will add a new column named FIRST ORDER DATE to the CUSTOMERS table ...
Post by: jaycezhao on Jan 31, 2018
I appreciate your time