ST_Point_Inside_Circle — Is the point geometry insert circle defined by center_x, center_y , radius
boolean ST_Point_Inside_Circle(geometry  a_point, float  center_x, float  center_y, float  radius);
The syntax for this functions is point_inside_circle(<geometry>,<circle_center_x>,<circle_center_y>,<radius>). Returns the true if the geometry is a point and is inside the circle. Returns false otherwise.
| ![[Note]](images/note.png) | |
| This only works for points as the name suggests |