what is regexp_split_to_array doing in postgres with regex: E'\\.' – Postgresql
Can someone help me understand what this SQL query is doing? select region_code, ST_Area(geom::geography) as area, ST_X(ST_Centroid(geom)) as long, ST_Y(ST_Centroid(geom)) as lat, latitude, longitude from regions where regexp_split_to_array(parent, E'\\.') && %s or region_code in %s More specifically I'm confused about…