Assume you need to create a table that contains a column called CreditLimit. Which of the following statement fragments will only allow a CreditLimit of $5,000, $7,500, or $15,000?
a. CHECK (CreditLimit LIKE (5000, 7500, 15000))
b. ADD (CreditLimit IN (5000 ,75000,15000))
c. CHECK ((5000, 7500, 15000))
d. CHECK (CreditLimit IN (5000, 7500, 15000))
e, 10 UPDATE tablename



Answer :

Other Questions