Здравствуйте, у меня есть таблица Postgres SQL, один столбец имеет тип точки
CREATE TABLE public.geometry_cylinder
(
id serial not null primary key,
distance float not null,
height float not null,
coordinates point not null
);
как я могу использовать одну из координат x или y в запросе SQL?
select * from public.geometry_cylinder where coordinates.x > 14.24