回答:
また、いずれかのために別々の列を使用することができますlatitude
し、longitude
あるいは、独自のタイプを作成します。いずれにせよ、許可された値を制約するのが良いかもしれません。この例では、タイプが複数のテーブルで使用される場合に制約を繰り返すことを避けるためにドメインも使用します。
create domain latitude_t as double precision not null
check(value>=-90 and value<=90);
create domain longitude_t as double precision not null
check(value>-180 and value<=180);
create type geocoord_t as (latitude latitude_t, longitude longitude_t);
create table my_table(id serial, geocoord geocoord_t);
insert into my_table(geocoord) values ((31.778175,35.22995));
select id, (geocoord).* from my_table;
id | latitude | longitude
----+-----------+-----------
1 | 31.778175 | 35.22995