ARRAY
Example
Section titled “Example”SELECT ARRAY[1,2,3];Output
Section titled “Output” {1,2,3}Explanation
Section titled “Explanation”In the given example, an array of integers is created using the ARRAY constructor. The output shows that an array containing the integers 1, 2, and 3 has been successfully created.