
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