Question: Which of the following statements will create a table with a multidimensional array as second column?
A
B
C
D
CREATE TABLE favorite_books (customer_id integer, themes_and_titles text[[]]);
B
CREATE TABLE favorite_books (customer_id integer, themes_and_titles text[][]);
C
CREATE TABLE favorite_books (customer_id integer, themes_and_titles text{2});
D
CREATE TABLE favorite_books (customer_id integer, themes_and_titles text[text]);
Note: Not available