
Ultimate access to all questions.
Which command correctly creates a new table with a comment in Databricks?
A
CREATE TABLE payments COMMENT "This table contains sensitive information" AS SELECT * FROM bank_transactions*_
B
COMMENT("This table contains sensitive information")CREATE TABLE payments AS SELECT * FROM bank_transactions*_
C
CREATE TABLE payments AS SELECT * FROM bank_transactions COMMENT "This table contains sensitive information"*_
D
CREATE TABLE payments AS SELECT * FROM bank_transactions COMMENT("This table contains sensitive information")*_
E
CREATE TABLE payments COMMENT("This table contains sensitive information") AS SELECT * FROM bank_transactions*_