Solved

Which of the Following Sql Commands Adds a New VARCHAR2

Question 46

Multiple Choice

Which of the following sql commands adds a new VARCHAR2 column of length 20 named new_column to table test?


A) ALTER TABLE test
ADD (new_column VARCHAR2(20) )
B) ADD column new_column VARCHAR2(20) to TABLE test
C) ADD to TABLE test (new_column VARCHAR2(20) )
D) ALTER TABLE test (new_column VARCHAR2(20) )

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions