Hello I have an Postgres SQL table, one column of its is type point
CREATE TABLE public.geometry_cylinder
(
id serial not null primary key,
distance float not null,
height float not null,
coordinates point not null
);
how can I use one of x or y coordinates in an SQL query?
select * from public.geometry_cylinder where coordinates.x > 14.24