Postgres Array
Introduction Arrays are an important function in Postgres, with every data type having a companion array type. For example, an integer data type will have an integer[] array type and a character data type will have character[] array type. In the event a new data type is defined, PostgreSQL will create a corresponding array type … Continued