Question:Which of the following statements will retrieve the number of values stored in an array column?
A SELECT array_dims(products) FROM store_products;
B SELECT products[] FROM store_products;
C SELECT dimensions(products) FROM store_products;
D SELECT array_dim(products) FROM store_products;
E SELECT count(products) FROM store_products;
+ AnswerA
+ Report