Postgresql – How should I represent a latitude and longitude in Postgres without using PostGIS

postgresql

How should I represent a latitude and longitude in Postgres without using PostGIS? The system I am using does not allow SQL passthrough so I cannot use POSTGIS.

Best Answer

You can use the builtin POINT datatype without postgis.