There are many spatial queries that can be run within PostGIS. A definitive list is held at:
Returns the X coordinate of the geometry.
SELECT ST_X(geom) FROM postcodes_geo WHERE postcode = 'EX1 1EE';
Returns the Y coordinate of the geometry.
SELECT ST_Y(geom) FROM postcodes_geo WHERE postcode = 'EX1 1EE';
Transforms a geometry into the specified spatial reference system, by ID. In PostGIS databases spatial reference systems are defined in the spatial_ref_sys table. ST_Transform relies on PostGIS knowing which SRS the geometry is currently in (in section 9 we used the UpdateGeometrySRID function to set this on a column).
SELECT ST_Transform(geom, 4326) FROM postcodes_geo WHERE postcode = 'EX1 1EE';
Using that to extract the Lng/Lat:
SELECT ST_X(ST_Transform(geom, 4326)), ST_Y(ST_Transform(geom, 4326))
FROM postcodes_geo WHERE postcode = 'EX1 1EE';
Returns results that are within a specified distance. In the case below, returns results that are within 100 metres of a certain point.
SELECT postcode FROM postcodes_geo
WHERE ST_DWithin(geom, ST_SetSRID(ST_MakePoint(292079, 92307), 27700), 100);
Returns results that share the same space. In the case below, returns postcodes that are within Devon.
SELECT postcode FROM postcodes_geo WHERE ST_Intersects(
geom,
(SELECT geom FROM county_region WHERE name = 'Devon County')
);
Returns the centre point of a geometry. For example, return the centre point of this Street (using the Unique Street Reference Number).
SELECT ST_X(ST_Centroid(wkb_geometry)), ST_X(ST_Centroid(wkb_geometry))
FROM street WHERE usrn = 14202557