Answers:
你也可以使用两种不同的列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